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/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/tonidoplug.png
--------------------------------------------------------------------------------
/libtorrent/docs/troubleshooting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/troubleshooting.png
--------------------------------------------------------------------------------
/libtorrent/docs/tvblob.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/tvblob.jpg
--------------------------------------------------------------------------------
/libtorrent/docs/tvitty.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/tvitty.jpg
--------------------------------------------------------------------------------
/libtorrent/docs/unicode_support.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/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/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/write_disk_buffers.png
--------------------------------------------------------------------------------
/libtorrent/docs/ziptorrent_thumb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/libtorrent/docs/ziptorrent_thumb.gif
--------------------------------------------------------------------------------
/libtorrent/docs/zyxel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/XX-net/twister-core/02086a0f015425007856e7761f799da23aba6efd/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 |