--- libaitio/inc/aitio.h 2013/06/04 12:44:46 1.31 +++ libaitio/inc/aitio.h 2013/06/24 11:09:55 1.31.2.1 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: aitio.h,v 1.31 2013/06/04 12:44:46 misho Exp $ +* $Id: aitio.h,v 1.31.2.1 2013/06/24 11:09:55 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -385,6 +385,31 @@ FILE *io_fd2buf(int fd, const char *mode); * return: -1 error or open file handle */ int io_dumbFile(const char *csFile, int mode, off_t size); + + +/* + * io_get1stiface() - Get first interface of host + * + * @szIface = interface string buffer + * @iflen = size of interface buffer + * return: -1 error or 0 ok + */ +int io_get1stiface(char *szIface, int iflen); +/* + * io_etherOpen() - Open BPF interface to device + * + * @csIface = interface name + * @flags = open flags + * return: -1 error or >-1 bpf handle + */ +int io_etherOpen(const char *csIface, int flags); +/* + * io_etherClose() - Close BPF interface + * + * @eth = bpf handle + * return: none + */ +void io_etherClose(int eth); #endif