ml @ 339a662d
Name | Size | Revision | Age | Author | Comment |
---|---|---|---|---|---|
stun_server | a0a1f630 | over 11 years | KristianBeckers | git-svn-id: https://repository.napa-wine.eu/svn... | |
tests | 6f256447 | about 10 years | TivadarSzemethy | added default send_params to mlOpenConnection ... | |
util | 4a7e268d | about 10 years | CsabaKiraly | change UDP send error message to info level gi... | |
Makefile.am | 581 Bytes | 6f26b958 | about 10 years | MarcoBiazzini | ML : some cleanings git-svn-id: https://reposi... |
Makefile.nec | 398 Bytes | 7027db40 | over 11 years | TivadarSzemethy | Modified ml/Makefile structure for automake gi... |
README | 1.55 KB | d6a420ed | about 11 years | CsabaKiraly | ML: readme changes git-svn-id: https://reposit... |
ml.c | 59.9 KB | 339a662d | about 10 years | CsabaKiraly | ML: add some received message sanity check git... |
ml_log.h | 729 Bytes | f081b938 | about 10 years | CsabaKiraly | Merge branch 'ML-fixes' git-svn-id: https://re... |
transmissionHandler.h | 16 KB | c6898c39 | about 10 years | RobertBirke | ML: added some mem initialisation git-svn-id: ... |
Latest revisions
View all revisions | View revisions
README
This is an short explaination for the messaging layer library.
The library requires the libevent library in the version 2.0.1 alpha and
the C math library. The library is implemented in C and works in
unix/linux. It is tested with Ubuntu 8.04.
The library can be compile with ./make.
This library is a network layer abstraction for p2p systems, that has
the primitives:
- connect to a peer
- send arbitrary size data to a peer
Furthermore, it provides the functionalites:
- pmtu discovery
- NAT traversal
- data fragmentation and reassembly
The library has six source code files: messagingLayer.h messagingLayer.c
transmissionHandler.h transmissionHandlder.c stun.h stun.c udpSocket.h
udpSocket.c
The files stun.h stun.c udpSocket.h udpSocket.c are placed in the
subfolder "util".
The messagingLayer.h and messagingLayer.c files contain the functions of
the API. These files are only wrapper files for function in the
transmissionHandler.h and transmissionHandler.c files.
The files transmissionHandler.h and transmissionHandler.c have the main
functionality of the messaging layer. For simplicity several
functionalites were excluded into utility files stun.h, stun.c,
udpSocket.h ,and udpSocket.c .
Stun.h and stun.c contain the NAT traversal functionality according to
STUN. They are used by the transmissionHandler to implement a STUN
client.
The udpSocket.h and udpSocket.c files contain a udp socket abstraction.
In the current implementation the file works only with a unix socket.
The tests folder contains various test programs and usage eexample code.
Also available in: Atom