You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
407 B
C
22 lines
407 B
C
24 years ago
|
#include <sys/types.h>
|
||
|
#include <sys/param.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/in.h>
|
||
|
#include "socket.h"
|
||
|
#include "byte.h"
|
||
|
#include "haveip6.h"
|
||
|
#include "ip6.h"
|
||
|
|
||
|
#ifndef IPV6_MULTICAST_HOPS
|
||
|
#undef LIBC_HAS_IP6
|
||
|
#endif
|
||
|
|
||
24 years ago
|
int socket_mchopcount6(int s,char TTL)
|
||
24 years ago
|
{
|
||
|
#ifdef LIBC_HAS_IP6
|
||
|
return setsockopt(s,IPPROTO_IPV6,IPV6_MULTICAST_HOPS,&TTL,sizeof TTL);
|
||
|
#else
|
||
|
return socket_mcttl4(s,TTL);
|
||
|
#endif
|
||
|
}
|