Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Per bug report from Ronald Wahl <rwa@peppercon.com>: | Eric Andersen | 2002-07-10 | 1 | -19/+16 |
| | | | | | | | | | | | ...inet_pton breaks since tolower is implemented as a macro and its argument is evaluated more than once: while ((ch = tolower (*src++)) != '\0') { So I fixed it by just undefining tolower() so we use the function version, not the macro. -Erik | ||||
* | Cleanup namespace leaks by prepending __ to global stuff to | Eric Andersen | 2002-07-07 | 1 | -7/+2 |
| | | | | | indicate it is (alledgedly) private. -Erik | ||||
* | Adjust naming for __FORCE_GLIBC__ to __FORCE_GLIBC and add | Eric Andersen | 2001-11-21 | 1 | -1/+1 |
| | | | | | support for __FORCE_NOGLIBC per Brian Stafford <brian.stafford@office-logic.com> | ||||
* | With all the headerfile changes, some functions didn't get there arg types | David McCullough | 2001-10-04 | 1 | -1/+1 |
| | | | | fixed up. | ||||
* | A patch from Michal Moskal <malekith@pld.org.pl> to include | Eric Andersen | 2001-07-09 | 1 | -0/+8 |
| | | | | | partial IPV6 support. This adds things like gethostbyname2(). Off by defaut, of course, | ||||
* | Silence a few warnings. | Eric Andersen | 2001-06-12 | 1 | -0/+2 |
| | |||||
* | Code did not match the prototypes, from what I can tell it should be using | David McCullough | 2001-05-08 | 1 | -4/+4 |
| | | | | size_t as the header files have it already. | ||||
* | Add in inet_ntop() and inet_pton() -- ported from glibc 2.2.3 | Eric Andersen | 2001-05-04 | 1 | -0/+400 |
by Cory Visi <merlin@phear.lwz.org> |