inital commit
FossilOrigin-Name: 7fd397174c7f4f21d36b065691b03d0127d68b82be1fb6551eec7c9eed45b9e6
This commit is contained in:
parent
9f048da56f
commit
140af914b2
56
src/capwap/cwmsg_addelem_vendor_cisco_mwar_addr.c
Normal file
56
src/capwap/cwmsg_addelem_vendor_cisco_mwar_addr.c
Normal file
@ -0,0 +1,56 @@
|
||||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
||||
#include "capwap.h"
|
||||
#include "capwap_cisco.h"
|
||||
|
||||
#include "cwmsg.h"
|
||||
#include "conn.h"
|
||||
|
||||
|
||||
|
||||
|
||||
void cwmsg_addelem_vendor_cisco_mwar_addr(struct cwmsg *msg, struct conn *conn)
|
||||
{
|
||||
uint8_t data [7];
|
||||
|
||||
switch (((struct sockaddr*)&conn->addr)->sa_family){
|
||||
case AF_INET:
|
||||
{
|
||||
data[0]=0;
|
||||
data[5]=0;
|
||||
data[6]=0;
|
||||
|
||||
struct sockaddr_in * sain = (struct sockaddr_in*)&conn->addr;
|
||||
memcpy(data+1,(uint8_t*)&sain->sin_addr,4);
|
||||
cwmsg_addelem_vendor_specific_payload(msg, CW_VENDOR_ID_CISCO,
|
||||
CWVENDOR_CISCO_MWAR_ADDR,
|
||||
data,7);
|
||||
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
/* case AF_INET6:
|
||||
{
|
||||
int id;
|
||||
if (cw_mode == CWMODE_CISCO)
|
||||
id = CWMSGELEM_WTP_IPV6_IP_ADDR;
|
||||
else
|
||||
id = CWMSGELEM_CAPWAP_LOCAL_IPV6_ADDRESS;
|
||||
struct sockaddr_in6 * sain = (struct sockaddr_in6*)&a;
|
||||
return cwmsg_addelem(msg,id,(uint8_t*)&sain->sin6_addr,16);
|
||||
}
|
||||
break;
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user