Diff for /libaitio/inc/aitio.h between versions 1.11.2.25 and 1.11.2.26

version 1.11.2.25, 2011/10/07 10:41:11 version 1.11.2.26, 2011/10/14 07:28:16
Line 232  typedef struct { Line 232  typedef struct {
                                                 AIT_LEN(__val) = 0; \                                                  AIT_LEN(__val) = 0; \
                                         } while (0)                                          } while (0)
   
   struct io_ether_addr {
           u_int8_t ether_addr_octet[6];
   };
   
   
 // io_GetErrno() Get error code of last operation  // io_GetErrno() Get error code of last operation
 inline int io_GetErrno();  inline int io_GetErrno();
 // io_GetError() Get error text of last operation  // io_GetError() Get error text of last operation
 inline const char *io_GetError();  inline const char *io_GetError();
   
   
   /*
    * io_ether_ntoa() Convert ethernet address to string
    * @n = ethernet address structure, like struct ether_addr
    * @a = string
    * @len = string length
    * return: NULL error or !=NULL string a
    */
   inline char *io_ether_ntoa(const struct io_ether_addr *n, char * __restrict a, int len);
   
 /*  /*
  * io_vals2buffer() Marshaling data from array with variables to buffer   * io_vals2buffer() Marshaling data from array with variables to buffer

Removed from v.1.11.2.25  
changed lines
  Added in v.1.11.2.26


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