24 |
31 |
35 |
36 | %(body_pre_docinfo)s
37 | %(docinfo)s
38 | %(body)s
39 |
40 |
43 |
44 |
46 |
50 | %(body_suffix)s
51 |
--------------------------------------------------------------------------------
/libtorrent/docs/tonidoplug.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/tonidoplug.png
--------------------------------------------------------------------------------
/libtorrent/docs/troubleshooting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/troubleshooting.png
--------------------------------------------------------------------------------
/libtorrent/docs/tvblob.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/tvblob.jpg
--------------------------------------------------------------------------------
/libtorrent/docs/tvitty.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/tvitty.jpg
--------------------------------------------------------------------------------
/libtorrent/docs/udp_tracker_protocol.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/udp_tracker_protocol.html
--------------------------------------------------------------------------------
/libtorrent/docs/unicode_support.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/unicode_support.png
--------------------------------------------------------------------------------
/libtorrent/docs/write_disk_buffers.dot:
--------------------------------------------------------------------------------
1 | digraph downloading {
2 | label=""
3 | node [shape=box];
4 |
5 | subgraph user_space {
6 | rank=same;
7 | "receive buffer" -> "plain text buffer" [label="decrypt in-place (no copy)" style=dashed];
8 | "plain text buffer" -> "disk cache" [label="move buffer reference (no copy)" style=dashed]
9 | }
10 |
11 | subgraph kernel {
12 | rank=same;
13 | "socket kernel buffer";
14 | "kernel page cache"
15 | }
16 |
17 | "socket kernel buffer" -> "receive buffer" [label="read() on socket (copy)"];
18 | "disk cache" -> "kernel page cache" [label="write() to file (copy)"]
19 | }
20 |
21 |
--------------------------------------------------------------------------------
/libtorrent/docs/write_disk_buffers.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/write_disk_buffers.png
--------------------------------------------------------------------------------
/libtorrent/docs/ziptorrent_thumb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/ziptorrent_thumb.gif
--------------------------------------------------------------------------------
/libtorrent/docs/zyxel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Jackarain/avplayer/20f1bd164fccb5482e2dd554de89c0c128d72775/libtorrent/docs/zyxel.png
--------------------------------------------------------------------------------
/libtorrent/examples/Jamfile:
--------------------------------------------------------------------------------
1 | import modules ;
2 |
3 | BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
4 |
5 | use-project /torrent : .. ;
6 |
7 | if $(BOOST_ROOT)
8 | {
9 | use-project /boost : $(BOOST_ROOT) ;
10 | }
11 |
12 | project client_test
13 | : requirements
14 |