test for ipv6 and if_name2index and socklen_t.
parent
0d591f3a9b
commit
d4753c43f3
@ -1,9 +1,33 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include "haveip6.h"
|
||||||
#include "socket.h"
|
#include "socket.h"
|
||||||
|
|
||||||
int socket_tcp6(void) {
|
#ifndef EAFNOSUPPORT
|
||||||
return socket(PF_INET6,SOCK_STREAM,IPPROTO_TCP);
|
#define EAFNOSUPPORT EINVAL
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int socket_tcp6(void)
|
||||||
|
{
|
||||||
|
#ifdef LIBC_HAS_IP6
|
||||||
|
int s;
|
||||||
|
|
||||||
|
if (noipv6) goto compat;
|
||||||
|
s = socket(PF_INET6,SOCK_STREAM,0);
|
||||||
|
if (s == -1) {
|
||||||
|
if (errno == EINVAL || errno == EAFNOSUPPORT) {
|
||||||
|
compat:
|
||||||
|
s=socket(AF_INET,SOCK_STREAM,0);
|
||||||
|
noipv6=1;
|
||||||
|
if (s==-1) return -1;
|
||||||
|
} else
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
#else
|
||||||
|
return socket_tcp();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,9 +1,32 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include "haveip6.h"
|
||||||
#include "socket.h"
|
#include "socket.h"
|
||||||
|
|
||||||
int socket_udp6(void) {
|
#ifndef EAFNOSUPPORT
|
||||||
return socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP);
|
#define EAFNOSUPPORT EINVAL
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int socket_udp6(void)
|
||||||
|
{
|
||||||
|
#ifdef LIBC_HAS_IP6
|
||||||
|
int s;
|
||||||
|
|
||||||
|
if (noipv6) goto compat;
|
||||||
|
s = socket(PF_INET6,SOCK_DGRAM,0);
|
||||||
|
if (s == -1) {
|
||||||
|
if (errno == EINVAL || errno == EAFNOSUPPORT) {
|
||||||
|
compat:
|
||||||
|
s=socket(AF_INET,SOCK_DGRAM,0);
|
||||||
|
noipv6=1;
|
||||||
|
if (s==-1) return -1;
|
||||||
|
} else
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
#else
|
||||||
|
return socket_udp();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
|
||||||
|
main() {
|
||||||
|
struct sockaddr_in6 sa;
|
||||||
|
sa.sin6_family = PF_INET6;
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <net/if.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
static char ifname[IFNAMSIZ];
|
||||||
|
char *tmp=if_indextoname(0,ifname);
|
||||||
|
}
|
Loading…
Reference in New Issue