summaryrefslogtreecommitdiff
path: root/lib/udp.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename COPYING -> LICENSE.Linus Nordberg2012-12-191-1/+1
| | | | And distribute LICENSE and HACKING.
* port to new RADIUS client libraryLuke Howard2011-11-141-15/+14
|
* Avoid potential double free.Linus Nordberg2011-03-141-1/+4
| | | | (udp_init): Set conn.rev = NULL in fault case.
* [UDP] Don't crash on second packet.Linus Nordberg2011-03-101-1/+2
| | | | | | [UDP] Set the user_data member for the write callback in rs_packet_send() -- the one from udp_init() doesn't do much good at this point.
* Get UDP working.Linus Nordberg2011-03-091-30/+84
| | | | | | | | | | | | | | | | For UDP, activate retransmit timer before receiving rather than sending makes the event loop break nicely after sending a message (which is important for blocking mode). Not quite sure that this is really accurate wrt to retransmission timing though but it should do for now. For UDP, set the user_data member for the read callback in rs_conn_receive_packet -- the one from udp_init() doesn't do much good now. For UDP, implement receiving message. Add compat_recv().
* Add retransmission timer support (UDP).Linus Nordberg2011-03-091-0/+15
|
* Don't make UDP write event persistant.Linus Nordberg2011-03-091-22/+46
| | | | | rs_packet_send() adds the event again when there's a packet to send and the write callback does the same if it doesn't drain the queue.
* Restructure code, moving most code out of packet.cLinus Nordberg2011-03-061-0/+85
Also, move copyright notice out of COPYING and into every file.