version 1.11, 2016/08/02 11:25:58
|
version 1.14.12.1, 2018/04/04 01:22:14
|
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 - 2016 | Copyright 2004 - 2018 |
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 60 typedef union {
|
Line 60 typedef union {
|
struct sockaddr_in6 sin6; |
struct sockaddr_in6 sin6; |
#ifndef __linux__ |
#ifndef __linux__ |
struct sockaddr_dl sdl; |
struct sockaddr_dl sdl; |
|
#else |
|
struct sockaddr_ll sll; |
#endif |
#endif |
} sockaddr_t; |
} sockaddr_t; |
#define E_SOCKADDR_INIT { .ss = { 0 } } |
#define E_SOCKADDR_INIT { .ss = { 0 } } |
|
#define E_SOCKADDR_MAX MIN(sizeof(sockaddr_t), 0xff) |
|
|
typedef union { |
typedef union { |
union { | struct in4_addr { |
in_addr_t s_addr; | |
u_char s4_addr[sizeof(in_addr_t)]; |
u_char s4_addr[sizeof(in_addr_t)]; |
} in; | } in4; |
| struct in_addr in; |
struct in6_addr in6; |
struct in6_addr in6; |
} inaddr_t; |
} inaddr_t; |
|
|
Line 141 const char *e_n2addr(sockaddr_t * __restrict addr, ait
|
Line 144 const char *e_n2addr(sockaddr_t * __restrict addr, ait
|
* @psHost = Hostname |
* @psHost = Hostname |
* @port = Port |
* @port = Port |
* @addr = Network address structure |
* @addr = Network address structure |
* return: 0 error or >0 network structure length | * return: 0 is error or >0 length of network structure |
*/ |
*/ |
socklen_t e_gethostbyname(const char *psHost, unsigned short port, |
socklen_t e_gethostbyname(const char *psHost, unsigned short port, |
sockaddr_t * __restrict addr); |
sockaddr_t * __restrict addr); |
|
/* |
|
* e_addrlen() - Get address length from network structure |
|
* |
|
* @addr = address |
|
* return: 0 is error or >0 length of network structure |
|
*/ |
|
socklen_t e_addrlen(const sockaddr_t *addr); |
/* |
/* |
* e_addrcmp() - Compare network addresses |
* e_addrcmp() - Compare network addresses |
* |
* |