You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ken 22abc7086e Initial commit 4 years ago
..
csharp Initial commit 4 years ago
java Initial commit 4 years ago
lua Initial commit 4 years ago
perl Initial commit 4 years ago
vbnet Initial commit 4 years ago
Config.in Initial commit 4 years ago
Makefile Initial commit 4 years ago
README Initial commit 4 years ago
generate_SWIG_interface.pl Initial commit 4 years ago
generate_interface.pl Initial commit 4 years ago

README

===============================================================================
= Language Bindings =
===============================================================================

The tools to generate the various language bindings are done here.
SWIG 1.3.24 or better is required for creating the Java and Perl bindings.

Perl scripts are used to parse ssl.h and automagically give the appropriate
bindings.

At present, the four languages supported are:

* C#
* VB.NET
* Java
* Perl

To generate each binding run the following:

C#:
> generate_interface.pl -csharp

VB.NET:
> generate_interface.pl -vbnet


Java:
> generate_SWIG_interface.pl -java
> cd java; swig -java -package axTLSj -noextern axTLSj.i

Perl:
> generate_SWIG_interface.pl -perl
> cd perl; swig -noextern -perl axTLSp.i

Java and Perl both create a library each called libaxtlsj.so and libaxtlsp.so
(or axtlsj.dll and atlsp.dll on Win32 platforms).

Note: the "-noextern" is deprecated in sw