aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/peer.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* headers: cleanup noticesJason A. Donenfeld2016-11-211-1/+1
|
* socket: keep track of src address in sending packetsJason A. Donenfeld2016-11-151-1/+1
|
* c89: the static keyword is okay in c99, but not in c89Jason A. Donenfeld2016-11-051-1/+1
|
* socket: use dst_cache instead of handrolled cacheJason A. Donenfeld2016-11-041-2/+6
|
* timers: take reference like a lookup tableJason A. Donenfeld2016-11-031-8/+15
|
* kref: elide checksJason A. Donenfeld2016-11-021-5/+3
|
* peer: kref is most likely to succeedJason A. Donenfeld2016-11-011-2/+2
|
* Rework headers and includesJason A. Donenfeld2016-09-291-5/+2
|
* c: specify static array size in function paramsJason A. Donenfeld2016-08-021-1/+1
| | | | | | | | | | | | | | | The C standard states: A declaration of a parameter as ``array of type'' shall be adjusted to ``qualified pointer to type'', where the type qualifiers (if any) are those specified within the [ and ] of the array type derivation. If the keyword static also appears within the [ and ] of the array type derivation, then for each call to the function, the value of the corresponding actual argument shall provide access to the first element of an array with at least as many elements as specified by the size expression. By changing void func(int array[4]) to void func(int array[static 4]), we automatically get the compiler checking argument sizes for us, which is quite nice.
* Initial commitJason A. Donenfeld2016-06-251-0/+144