summaryrefslogtreecommitdiff
path: root/components/ip.c
AgeCommit message (Collapse)Author
2018-05-02ip: Sort headers alphabeticallyAaron Marcher
2018-04-29ip: add OpenBSD supportAli H. Fardan
ip.c already works on OpenBSD, it's just missing some headers:
2018-03-28Format error messages properlyAaron Marcher
Make use of strerror(errno) and format all errors equally: function ['parameters']: error message
2018-03-28Get rid of err.h as it is not portableAaron Marcher
Replace warn() and warnx() with fprintf() and add <stdio.h> where necessary.
2018-03-21More robust preprocessor switchesAaron Marcher
Replace #ifdef with #if defined() and #elif with #elif defined() as it should only test if it is defined or not.
2018-03-18Build Linux-only functions only on LinuxAaron Marcher
2017-09-24Move components into dedicated subdirectoryLaslo Hunhold
This brings us a lot more tidiness.