| File |
Date |
Author |
Commit |
|
Makefile.am
|
2016-03-03
|
Christian Ferrari
|
[87dcb0]
Implementing peer to peer handshake
|
|
Makefile.in
|
2016-04-25
|
Christian Ferrari
|
[a443d0]
Release 1.3.0 commit
|
|
README
|
2014-10-21
|
Christian Ferrari
|
[44e3a0]
First library use case is growing...
|
|
case0000.c
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case0001.c
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case0002.c
|
2016-04-15
|
Christian Ferrari
|
[616b90]
Tested C++ API for TLS, implemented and tested ...
|
|
case0003.c
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case1000.cc
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case1001.cc
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case1002.cc
|
2016-04-15
|
Christian Ferrari
|
[616b90]
Tested C++ API for TLS, implemented and tested ...
|
|
case2000.php.in
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case2001.php.in
|
2016-01-06
|
Christian Ferrari
|
[da799c]
Copyright update, first TCP encapsulation in fl...
|
|
case2002.php.in
|
2016-04-16
|
Christian Ferrari
|
[2b7e12]
Completed TLS API for all languages: C, C++, Ja...
|
|
case3000.py
|
2015-04-20
|
Christian Ferrari
|
[280ba5]
Added more Python test cases
|
|
case3001.py
|
2015-04-20
|
Christian Ferrari
|
[280ba5]
Added more Python test cases
|
|
case3002.py
|
2016-04-16
|
Christian Ferrari
|
[2b7e12]
Completed TLS API for all languages: C, C++, Ja...
|
|
case4000.java
|
2015-09-06
|
Christian Ferrari
|
[1cbb13]
All Java methods was developed
|
|
case4001.java
|
2015-09-13
|
Christian Ferrari
|
[f64af2]
Implemented case tests case4001.java
|
|
case4002.java
|
2016-04-15
|
Christian Ferrari
|
[616b90]
Tested C++ API for TLS, implemented and tested ...
|
|
case4003.java
|
2015-09-16
|
Christian Ferrari
|
[051b4a]
Java test cases completed
|
Read Me
The C source files contained in this directory are used as test cases for
libflom (flom library) usage and can be used as programming examples.
Makefile automatically compiles them; if you want to compile one of these
examples for your own purpose, you shall use a command like the following one
(the example referes to "case0000.c" source program):
gcc -I /usr/local/include/ $(pkg-config --cflags glib-2.0) \
-L /usr/local/lib/ -l flom $(pkg-config --libs glib-2.0 gthread-2.0) \
-o case0000 case0000.c
Note:
0. you must install flom (sudo make install) before starting to build your own
program using libflom
1. /usr/local/include is the default installation path of libflom headers
(change it according to your configuration if you changed the default)
2. /usr/local/lib is the default installation path of libflom library
(change it according to your configuration if you changed the default)
3. glib-2.0 and gthread-2.0 compile and link flags are retrieved using
pkg-config utility