renamed capwap directory to cw.
FossilOrigin-Name: 8a43dd9d05a4cb73210243ddd8df2a26f16c7ef2c4d4e36ab446de1f65d88223
This commit is contained in:
21
src/cw/sock_setport.c
Normal file
21
src/cw/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