-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
60 lines (46 loc) · 2.36 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
This is the Schneflocke Project, a Friend-2-Friend file sharing application.
It also contains libschnee, a library for supporting the creation of P2P-
Collaboration applications and similar.
For user information see
http://www.sflx.net
This documentation is intended for developers.
0. Building instructions
-------------------------
See doc/building.txt
1. Testing
-------------------------
Testcases can be found in testcases/. Once you are through with building you can
also let cmake run the testcases, e.g. with "make test". They will all compile
into simple executables who either fail with "abort" or return a value != 0 if
they found an error. Note that the testcases use some very sharp timed
assumptions so there is not always an error if a testcase fails.
Applications can be found in the app folder.
1. Use of libschnee / libflocke library
---------------------------------------
Please look at the API documentation generated by Doxygen. You can also refer to
the shipped testcases / demo applications. Cmdline-client, degeneration-test
and stream-test are good starting points. The building process will create a
static library against you can link own developments. You may also change the
cmake script if you need a shared library. You should use libschnee/ as your
include directory, so that you can do includes like this:
// InterplexBeacon
#include <schnee/p2p/InterplexBeacon.h>
All classes are in the sf namespace, some are a bit deeper. The API Documentation
hides a lot of classes, which shall not be used from outside the library. If you
need API documentation for them too, you can build a developer API documentation
with the target apidoc-dev (but this documentation is far from complete).
2. License
-------------------------
See license.txt
3. Other software contained:
----------------------------
This software also contains:
- RapidXML, (c) 2006, 2007 Marcin Kalicinski (Boost License)
- linenoise, (c) 2010, Salvatore Sanfilippo (BSD License)
- GNUTLS precompiled for Windows (LGPL License) http://josefsson.org/gnutls4win/
- Base64 encoder/decoder by Bob Withers (Freeware), with some Extensions from
Stanley Yamane (BSD License)
- UDT (c) 2001 - 2010, The Board of Trustees of the University of Illinois (BSD License)
4. Components, Applications
---------------------------
Various program components can be found in libflocke/, applications in apps/