summaryrefslogtreecommitdiffstats
path: root/include/internal/proto.h
blob: 60a5f4e4ff8e0af471051436aa20486f389ef702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _NFCT_PROTO_H_
#define _NFCT_PROTO_H_

#include <stdint.h>
#include <netinet/in.h>
#include <linux/icmp.h>
#include <linux/icmpv6.h>

#ifndef ICMPV6_NI_QUERY
#define ICMPV6_NI_QUERY 139
#endif

#ifndef ICMPV6_NI_REPLY
#define ICMPV6_NI_REPLY 140
#endif

uint8_t __icmp_reply_type(uint8_t type);
uint8_t __icmpv6_reply_type(uint8_t type);

#endif