aboutsummaryrefslogtreecommitdiffstats
path: root/dcc.h
Commit message (Collapse)AuthorAgeLines
* Reindent everything to K&R style with tabsIndent2015-02-20-14/+14
| | | | | | | Used uncrustify, with the configuration file in ./doc/uncrustify.cfg Commit author set to "Indent <please@skip.me>" so that it's easier to skip while doing git blame.
* Fix incorrect Free Software Foundation addressMatej Cepl2015-01-16-2/+2
|
* Restored CTCP/DCC hooks for outgoing file transfers.Wilmer van der Gaast2010-04-13-1/+1
|
* Including DCC stuff again, with a wonderful extra layer of abstraction.Wilmer van der Gaast2010-04-11-4/+5
| | | | | | | Some hooks are missing so sending files doesn't work yet. Receiving also still seems to have some issues. On the plus side, at least the MSN/Jabber modules work again.
* Fixed 100% CPU usage bug in dcc.c.Wilmer van der Gaast2010-03-21-0/+6
|
* moved some stuff around in preperation for MSN merge.ulim2008-08-04-0/+4
| | | | | | * both ends (proto&dcc) need to finish a transfer now for it to be finished * moved throughput calc. and some messages to dcc (no need to implement in protocols)
* timeout of transfers after 120 seconds of no progress (bytes received/sent).ulim2008-05-06-0/+8
|
* Send and receive seems to work now! Also adopted the new buffering strategy,ulim2007-12-04-45/+2
| | | | | only one buffer of 2k per transfer now.
* Intermediate commit. Sending seems to work. TODOs:ulim2007-12-03-1/+5
| | | | | | | | | | | | * move from out_of_data to is_writable, eliminate buffers * implement "transfers reject [id]" * documentation in commands.xml * implement throughput and cummulative throughput boundaries * feature discovery before sending * implement sending over a proxy (proxy discovery, socks5 client handshake for sending, activate message) * integrate toxik-mek-ft
* Initial import of jabber file receive and DCC send support. This introducesulim2007-11-28-0/+125
only a few changes to bitlbees code, mainly the addition of the "transfers" command. This is known to work with Kopete, Psi, and Pidgin (formerly known as gaim). At least with Pidgin also over a proxy. DCC has only been tested with irssi. IPV6 is untested but should work. Currently, only receiving via SOCKS5BYTESREAMS is implemented. I'm not sure if the alternative(in-band bytestreams IBB) is worth implementing since I didn't see a client yet that can do it. Additionally, it is probably very slow and needs support by the server as well.