File: proto.h

package info (click to toggle)
libnetfilter-conntrack 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,576 kB
  • sloc: ansic: 12,534; sh: 5,175; makefile: 188
file content (20 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (2)
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