#ifndef INET_H
#define INET_H

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>

#ifndef AF_INET6
#define AF_INET6 10
#endif

#ifndef HAVE_INET_PTON
extern int bopm_inet_pton(int, const char *, void *);
#endif
extern char *inetntop(int, const void *, char *, unsigned int);

#endif /* INET_H */


syntax highlighted by Code2HTML, v. 0.9.1