version 1.14, 2017/01/09 12:53:18
|
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 68 typedef union {
|
Line 68 typedef union {
|
#define E_SOCKADDR_MAX MIN(sizeof(sockaddr_t), 0xff) |
#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; |
|
|