Diff for /libaitio/inc/aitio.h between versions 1.41 and 1.41.2.2

version 1.41, 2015/01/19 23:32:30 version 1.41.2.2, 2016/08/10 13:59:44
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 - 2014Copyright 2004 - 2016
         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 53  SUCH DAMAGE. Line 53  SUCH DAMAGE.
 #include <syslog.h>  #include <syslog.h>
 #include <openssl/evp.h>  #include <openssl/evp.h>
 #include <openssl/aes.h>  #include <openssl/aes.h>
 #include <sys/tty.h>  
 #include <sys/ioctl_compat.h>  
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <sys/un.h>  #include <sys/un.h>
 #include <sys/uio.h>  #include <sys/uio.h>
   #ifndef __linux__
   #include <sys/tty.h>
   #include <sys/ioctl_compat.h>
 #include <net/if_dl.h>  #include <net/if_dl.h>
 #include <net/bpf.h>  #include <net/bpf.h>
   #endif
 #include <netinet/in.h>  #include <netinet/in.h>
 #include <elwix.h>  #include <elwix.h>
 #include <aitsched.h>  #include <aitsched.h>
Line 655  int io_etherOpen(const char *csIface, int flags, unsig Line 657  int io_etherOpen(const char *csIface, int flags, unsig
  */   */
 void io_etherClose(int eth, void **zcbuf);  void io_etherClose(int eth, void **zcbuf);
   
   #ifndef __linux__
 /*  /*
  * io_etherFilter() - BPF filter routine   * io_etherFilter() - BPF filter routine
  *   *
Line 666  void io_etherClose(int eth, void **zcbuf); Line 669  void io_etherClose(int eth, void **zcbuf);
  * return: -1 error or 0 ok   * return: -1 error or 0 ok
  */   */
 int io_etherFilter(int eth, int io, struct bpf_insn * __restrict insn, size_t insnlen);  int io_etherFilter(int eth, int io, struct bpf_insn * __restrict insn, size_t insnlen);
   #endif
   
 /*  /*
  * io_etherSend() - Send packet to bpf   * io_etherSend() - Send packet to bpf

Removed from v.1.41  
changed lines
  Added in v.1.41.2.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>