You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
leitner bb9cdaaafb add iarray 16 years ago
array add iarray 16 years ago
buffer stralloc* not const char* 16 years ago
byte byte_zero is also miscompiled by gcc 4.3.2 16 years ago
case switch to size_t and ssize_t 18 years ago
cdb small man page updates and add a cdbget test 18 years ago
dns fix for NetBSD 3.0 (they broke their sys/types.h) 19 years ago
examples add a few examples 19 years ago
fmt fix gcc warning 17 years ago
io remove four warnings 16 years ago
mmap switch to size_t and ssize_t 18 years ago
mult fix for 32-bit archs 16 years ago
open fix man page for openreadclose 16 years ago
scan work around broken sqlite download httpd 16 years ago
socket typo 16 years ago
str switch to size_t and ssize_t 18 years ago
stralloc fix warning 17 years ago
tai even more man pages 22 years ago
taia add taia_half 19 years ago
test add iarray 16 years ago
textcode add fmt_ldapescape2 17 years ago
uint add uint64 pack and unpack routines 17 years ago
unix remove even more warnings 20 years ago
.cvsignore ignore uudecode 18 years ago
CHANGES add iarray 16 years ago
COPYING Initial revision 24 years ago
GNUmakefile add iarray 16 years ago
Makefile Makefileupdate 16 years ago
README mention my email address 22 years ago
TODO fix for NetBSD 3.0 (they broke their sys/types.h) 19 years ago
array.h add -D_REENTRANT to CFLAGS so libowfat can be used in multi-threaded 19 years ago
buffer.h add buffer_tosa (buffer writing to auto-growing stralloc) 16 years ago
byte.h switch to size_t and ssize_t 18 years ago
case.h switch to size_t and ssize_t 18 years ago
cdb.h make socket_(tc|ud)p[46] actually return non-blocking sockets as 19 years ago
cdb_make.h make socket_(tc|ud)p[46] actually return non-blocking sockets as 19 years ago
dns.h fix for NetBSD 3.0 (they broke their sys/types.h) 19 years ago
errmsg.h switch to size_t and ssize_t 18 years ago
errmsg_int.h add errmsg_int.h 19 years ago
fmt.h add fmt_strm_alloca 16 years ago
iarray.h add iarray 16 years ago
io.h wrong prototype 17 years ago
io_internal.h further Windoze support (test/io5.c works, gatling still doesn't) 19 years ago
iob.h add iob_addbuf_munmap 17 years ago
iob_internal.h use callback based infrastructure to reset iob's 17 years ago
iopause.h1 monster update: add tai, taia, iopause, case, and ipv6 enhanced dns 22 years ago
iopause.h2 use sys/poll.h instead of poll.h for iopause 22 years ago
ip4.h add prototype for dns_name6 (Rolf Eike Beer) 19 years ago
ip6.h add prototype for dns_name6 (Rolf Eike Beer) 19 years ago
likely.h add iarray 16 years ago
mmap.h switch to size_t and ssize_t 18 years ago
ndelay.h remove obsolete extern from header files 21 years ago
open.h add a few man pages 21 years ago
openreadclose.h switch to size_t and ssize_t 18 years ago
rangecheck.h some valgrind de-noising 17 years ago
readclose.h switch to size_t and ssize_t 18 years ago
safemult.h reverse return code for safemult API to conform to newer djb APIs 21 years ago
scan.h switch to size_t and ssize_t 18 years ago
select.h1 monster update: add tai, taia, iopause, case, and ipv6 enhanced dns 22 years ago
select.h2 more BSD compat 21 years ago
socket.h make gcc -ansi compatible 16 years ago
str.h switch to size_t and ssize_t 18 years ago
stralloc.h make stralloc_copym work 16 years ago
t.c add iarray 16 years ago
tai.h remove obsolete extern from header files 21 years ago
taia.h save 8 bytes in taia.h for 64-bit systems 16 years ago
textcode.h add fmt_ldapescape2 17 years ago
tryalloca.c fix for NetBSD 3.0 (they broke their sys/types.h) 19 years ago
trybsdsf.c macos x support 21 years ago
trydevpoll.c broken lose32 port using mingw (don't use!!!) 21 years ago
tryepoll.c add epoll and kqueue tests 21 years ago
tryinline.c work around compilers that don't understand "static inline" 23 years ago
tryip6.c test for ipv6 and if_name2index and socklen_t. 23 years ago
trykqueue.c add epoll and kqueue tests 21 years ago
tryn2i.c test for ipv6 and if_name2index and socklen_t. 23 years ago
trypoll.c monster update: add tai, taia, iopause, case, and ipv6 enhanced dns 22 years ago
tryscope.c broken lose32 port using mingw (don't use!!!) 21 years ago
trysendfile.c IRIX compatibility (yuck!) 20 years ago
trysigio.c oops, forgot to add sigio test program 21 years ago
trysl.c broken lose32 port using mingw (don't use!!!) 21 years ago
trysocket.c add trysocket.c 21 years ago
trysysel.c monster update: add tai, taia, iopause, case, and ipv6 enhanced dns 22 years ago
uint16.h add uint64 pack and unpack routines 17 years ago
uint32.h add uint64 pack and unpack routines 17 years ago
uint64.h add uint64 pack and unpack routines 17 years ago
va_narg.h new way to do it 17 years ago
windoze.h add windoze.h 21 years ago

README

libowfat is a library of general purpose APIs extracted from Dan
Bernstein's software, reimplemented and covered by the GNU General
Public License Version 2 (no later versions).

The API has been slightly extended (for example, I provide a uint32_read
function, and I extended the socket API to support IPv6) where I found
it necessary or beneficial in a specific project.

Many of the functions I implement here have since been placed in the
public domain, so there are other sources to get this code (except for
my extensions obviously).  The implementations here may not be as
portable as the original versions; I tend to focus on the Single Unix
Specification and not on some obsolete legacy systems found in the
basements of some vintage hardware clubs.

I also provide man pages for many functions, mostly extracted from Dan's
web documentation or documentation found in earlier versions of his
software.  For some reason, he abandoned man pages in favor of HTML
recently.

On July 4 2002, Dan also placed his DNS routines and supporting
low level functions in the public domain, so I copy them here instead of
reimplementing them.  http://online.securityfocus.com/archive/1/280642
has an online version of the bugtraq posting.

The author can be reached under felix-libowfat@fefe.de