version 1.38.10.16, 2013/12/12 21:17:53
|
version 1.40, 2014/02/08 22:06:16
|
Line 12 terms:
|
Line 12 terms:
|
All of the documentation and software included in the ELWIX and AITNET |
All of the documentation and software included in the ELWIX and AITNET |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
|
|
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 | Copyright 2004 - 2014 |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
|
|
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
Line 185 int io_progVacuum(prog_t * __restrict prg, unsigned in
|
Line 185 int io_progVacuum(prog_t * __restrict prg, unsigned in
|
*/ |
*/ |
int io_progCloseAt(prog_t * __restrict prg, unsigned int idx); |
int io_progCloseAt(prog_t * __restrict prg, unsigned int idx); |
/* |
/* |
|
* io_progCloseOf() - Close program at pool with certain handle |
|
* |
|
* @prg = program pool |
|
* @h = handle of program |
|
* return: 0 error, >0 closed programs |
|
*/ |
|
#ifdef POPEN_STREAM |
|
int io_progCloseOf(prog_t * __restrict prg, FILE *h); |
|
#else |
|
int io_progCloseOf(prog_t * __restrict prg, int h); |
|
#endif |
|
/* |
* io_progClose() - Close all programs in pool |
* io_progClose() - Close all programs in pool |
* |
* |
* @prg = program pool |
* @prg = program pool |
Line 648 int io_getmaciface(const char *csIface, ether_addr_t *
|
Line 660 int io_getmaciface(const char *csIface, ether_addr_t *
|
* @zcbuf = zero copy buffer, if BPF supports it and isn't NULL |
* @zcbuf = zero copy buffer, if BPF supports it and isn't NULL |
* return: -1 error or >-1 bpf handle |
* return: -1 error or >-1 bpf handle |
*/ |
*/ |
int io_etherOpen(const char *csIface, int flags, int whdr, int wdlt, | int io_etherOpen(const char *csIface, int flags, unsigned int whdr, |
unsigned int *buflen, void **zcbuf); | unsigned int wdlt, unsigned int *buflen, void **zcbuf); |
/* |
/* |
* io_etherClose() - Close BPF interface |
* io_etherClose() - Close BPF interface |
* |
* |