Initial commit
FossilOrigin-Name: c53d95729c009f8f80a7d63847cef7668ff73f8af0523ab65f7734696f85399c
This commit is contained in:
21
src/capwap/sock_setport.c
Normal file
21
src/capwap/sock_setport.c
Normal file
@ -0,0 +1,21 @@
|
||||
#include "sock.h"
|
||||
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
int sock_setport(struct sockaddr *addr, int port)
|
||||
{
|
||||
switch (addr->sa_family){
|
||||
case AF_INET:
|
||||
((struct sockaddr_in*)addr)->sin_port=htons(port);
|
||||
break;
|
||||
#ifdef WITH_IPV6
|
||||
case AF_INET6:
|
||||
((struct sockaddr_in6*)addr)->sin6_port=htonl(port);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
Reference in New Issue
Block a user