Commit Graph

6 Commits (69eb8c01e3ddf1b4f4fe49f3b3aeefbf9bfc9453)

Author SHA1 Message Date
leitner 3004b518ef switch to size_t and ssize_t
leitner 636cfb70b0 make sure buffer_get tries to get all the bytes it was asked for
leitner 6196f771cd remove a few gcc 4 warnings
work around freebsd 5.4 brokenness (if you don't have IPv6 in the
    kernel, socket(PF_INET6,SOCK_STREAM,0) returns EPROTONOSUPPORT
    instead of EPFNOSUPPORT, which basically says "yeah, I know IPv6,
    but TCP?  never heard of it")
leitner c874604f12 gcc 4 cleanups (mostly unsigned char* vs char*)
leitner 5eb1cdf888 cleanups in stralloc and buffer:
int -> long for sizes
    char -> unsigned char for strings
leitner a50b334f58 added initial buffer implementation.