version 1.12, 2011/10/31 13:53:51
|
version 1.12.2.1, 2011/10/31 14:13:02
|
Line 54 SUCH DAMAGE.
|
Line 54 SUCH DAMAGE.
|
#include <openssl/aes.h> |
#include <openssl/aes.h> |
#include <sys/tty.h> |
#include <sys/tty.h> |
#include <sys/ioctl_compat.h> |
#include <sys/ioctl_compat.h> |
|
#include <sys/socket.h> |
|
#include <sys/un.h> |
|
#include <net/if_dl.h> |
|
#include <netinet/in.h> |
|
|
|
|
#define VACUUM_LEFT 1 |
#define VACUUM_LEFT 1 |
Line 235 typedef struct {
|
Line 239 typedef struct {
|
struct io_ether_addr { |
struct io_ether_addr { |
u_int8_t ether_addr_octet[6]; |
u_int8_t ether_addr_octet[6]; |
}; |
}; |
|
|
|
typedef union { |
|
struct sockaddr_storage ss; |
|
struct sockaddr sa; |
|
struct sockaddr_un sun; |
|
struct sockaddr_in sin; |
|
struct sockaddr_in6 sin6; |
|
struct sockaddr_dl sdl; |
|
} io_sockaddr_t; |
|
|
|
|
// io_GetErrno() Get error code of last operation |
// io_GetErrno() Get error code of last operation |