1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/src/protocol/bittorrent
Witold Filipczyk a67188413c [lists] LIST_HEAD -> LIST_HEAD_EL to not clash with libevent's LIST_HEAD. Also added curl implementation of ftpes and sftp
Implementation of ftpes and sftp is based on curl's hiperfifo example. It requires libevent.
ftpes only encrypts control channel. There were problems when both control and data were encrypted. It stucked on SIZE.
Only successful connections work, errors are not handled properly.
2023-06-19 18:43:53 +02:00
..
bencoding.c [bittorrent] const in bencoding_dictionary_info 2022-02-17 19:33:01 +01:00
bencoding.h [mozjs24] Allow build elinks with g++ 2020-10-05 20:14:55 +02:00
bittorrent.c [lists] LIST_HEAD -> LIST_HEAD_EL to not clash with libevent's LIST_HEAD. Also added curl implementation of ftpes and sftp 2023-06-19 18:43:53 +02:00
bittorrent.h [mozjs24] Allow build elinks with g++ 2020-10-05 20:14:55 +02:00
common.c [lists] LIST_HEAD -> LIST_HEAD_EL to not clash with libevent's LIST_HEAD. Also added curl implementation of ftpes and sftp 2023-06-19 18:43:53 +02:00
common.h [lists] LIST_HEAD -> LIST_HEAD_EL to not clash with libevent's LIST_HEAD. Also added curl implementation of ftpes and sftp 2023-06-19 18:43:53 +02:00
connection.c [bittorrent] cast 2022-01-25 19:08:21 +01:00
connection.h [mozjs24] Allow build elinks with g++ 2020-10-05 20:14:55 +02:00
dialogs.c [color] Removed code related to draw_text_node 2022-10-16 15:18:34 +02:00
dialogs.h [color] Removed code related to draw_text_node 2022-10-16 15:18:34 +02:00
Makefile path_to_top -> top_builddir 2005-10-20 04:00:35 +02:00
meson.build [meson] meson build scripts. 2020-09-05 22:06:01 +02:00
peerconnect.c [bittorrent] enum bittorrent_blacklist_flags -> bittorrent_blacklist_flags_T 2022-01-28 16:31:07 +01:00
peerconnect.h [mozjs24] Allow build elinks with g++ 2020-10-05 20:14:55 +02:00
peerwire.c [bittorrent] signed char is not sufficient for va_arg 2022-06-23 21:39:11 +02:00
peerwire.h [bittorrent] signed char is not sufficient for va_arg 2022-06-23 21:39:11 +02:00
piececache.c [bittorrent] compilation fix 2022-04-23 16:24:43 +02:00
piececache.h [lists] LIST_HEAD -> LIST_HEAD_EL to not clash with libevent's LIST_HEAD. Also added curl implementation of ftpes and sftp 2023-06-19 18:43:53 +02:00
README [config] Changed in more places ~/.elinks -> ~/.config/elinks 2023-01-26 12:41:46 +01:00
tracker.c [bittorrent] const event 2022-02-17 21:19:05 +01:00
tracker.h [mozjs24] Allow build elinks with g++ 2020-10-05 20:14:55 +02:00

The ELinks BitTorrent Client
============================

The BitTorrent client is fully usable and has been tested on multiple sites, it
does however still lack certain core functionally and is therefore marked
experimental. Below, various known problems and limitations are listed:

 - Peer IDs should be restorable from ~/.config/elinks/downloadhist.

 - It needs to give up on unreachable peers.

 - It should be possible to specify the download location.

 - When the file is removed from under it (in the shell), either give a warning
   and stop downloading, or start over.

 - Addition of a blacklist, either temporary (session) or persistant.

 - Unsupported Tracker Protocol Error: When connecting to some trackers we get
   a returned failure reason reading:

	unsupported tracker protocol, please upgrade your client

   often this is due to the compact peer format is not enabled. We should maybe
   try to reconnect when this occurs.

 - Multiple Trackers: The metainfo file can contain a list of tracker URIs so
   that the client can handle tracker request errors more gracefully by
   attempting to connect to a new tracker.  Although this functionality should
   be simple to add to the client we have chosen not to implement this.

 - Access to Disk: Currently, the are a couple of assertions in respect to disk
   access. Once pieces are completed they can never become incomplete again if
   something was to remove them from under the client.  This is a valid
   assertion for most systems and usage.  Furthermore, when writing and reading
   pieces, it is asserted that pieces are transferred correctly so that a read
   following a write will return the valid piece.

 - All access to disk uses blocking I/O. With the many consecutive reads and
   write the client uses, this can potential become a problem that can end up
   stalling all execution if the piece length is very big. For this reason, the
   ideas outlined in regard to a more fine grained solution using
   block-oriented disk access is even more relevant.

 - No download or upload rate limiting: All transferring happens
   unconditionally; in other words there are no means to limit the rate data is
   transferred. This can potential deny other services from running.

 - Badly configured web servers: We have experienced that many web servers
   providing metainfo files are badly configured in that they do not correctly
   set the content type. We have therefore found it necessary to also allow
   application/x-torrent in addition to application/x-bittorrent. However, some
   servers set the content type to text/plain which, due to the way ELinks
   prioritises content types provided in the protocol header sent by the
   server, means that loading many metainfo files will not cause the BitTorrent
   download to be queried. As a workaround, the internal BitTorrent URI scheme
   can be used. This, however, will not open the download dialog, but keep the
   download progress entirely in the status bar of the browser.

 - IPv6: Although certain informal extensions to the BitTorrent protocol, such
   as the compact peer information format returned by the tracker, are
   optimised for IPv4, the protocol works for IPv6.  We have only tested the
   client under IPv4.

 - Multiple Resumes: By default ELinks does three connection attempts.  This
   can cause the resuming to happen multiple times if the initial tracker
   connection causes the main BitTorrent connection to timeout.