File: README

package info (click to toggle)
libtorrent 0.10.4-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,872 kB
  • ctags: 3,425
  • sloc: cpp: 14,355; sh: 8,455; makefile: 320; xml: 163; ansic: 87
file content (37 lines) | stat: -rw-r--r-- 1,211 bytes parent folder | download | duplicates (3)
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
LibTorrent

LICENSE

 GNU GPL, see COPYING. "libtorrent/src/utils/sha_fast.{cc,h}" is
originally from the Mozilla NSS and is under a triple license; MPL,
LGPL and GPL. An exception to non-NSS code has been added for linking
to OpenSSL as requested by Debian, though the author considers that
library to be part of the Operative System and thus linking is allowed
according to the GPL.

 Use whatever fits your purpose, the code required to compile with
Mozilla's NSS implementation of SHA1 has been retained and can be
compiled if the user wishes to avoid using OpenSSL.

CONTACT

 Send bug reports, suggestions and patches to <jaris@ifi.uio.no> or
to the mailinglist.

LIBRARY DEPENDENCIES

  libsigc++ 2.0 (deb: libsigc++-2.0-dev)
  g++ >= 3.3

SIGC++

 The API will use sigc++ signals to give the client a simple, yet
powerful way of reacting to events from the library. The client can
hook multiple slots on each signal and modify the parameters to suit
the functions. This avoids lots of unnecessary code in the client.

POLLING

 "libtorrent/src/torrent/poll.h" provides an abstract class for
implementing any kind of polling the client wishes to use. Currently
epoll and select based polling is included.