28 lines
406 B
C
28 lines
406 B
C
|
|
#ifndef _UDP_HELPERS_H
|
||
|
|
#define _UDP_HELPERS_H
|
||
|
|
|
||
|
|
#ifdef __cpluscplus
|
||
|
|
extern "C"
|
||
|
|
{
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <arpa/inet.h>
|
||
|
|
#define __FAVOR_BSD 1
|
||
|
|
#include <netinet/udp.h>
|
||
|
|
|
||
|
|
static inline uint16_t udp_hdr_get_sport(const struct udphdr *hdr)
|
||
|
|
{
|
||
|
|
return ntohs(hdr->uh_sport);
|
||
|
|
}
|
||
|
|
|
||
|
|
static inline uint16_t udp_hdr_get_dport(const struct udphdr *hdr)
|
||
|
|
{
|
||
|
|
return ntohs(hdr->uh_dport);
|
||
|
|
}
|
||
|
|
|
||
|
|
#ifdef __cpluscplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|