#ifndef TRAFGEN_L4_H #define TRAFGEN_L4_H enum udp_field { UDP_SPORT, UDP_DPORT, UDP_LEN, UDP_CSUM, }; enum tcp_field { TCP_SPORT, TCP_DPORT, TCP_SEQ, TCP_ACK_SEQ, TCP_DOFF, TCP_CWR, TCP_ECE, TCP_URG, TCP_ACK, TCP_PSH, TCP_RST, TCP_SYN, TCP_FIN, TCP_WINDOW, TCP_CSUM, TCP_URG_PTR, }; enum icmpv4_field { ICMPV4_TYPE, ICMPV4_CODE, ICMPV4_CSUM, ICMPV4_ID, ICMPV4_SEQ, ICMPV4_REDIR_ADDR, ICMPV4_MTU, }; enum icmpv6_field { ICMPV6_TYPE, ICMPV6_CODE, ICMPV6_CSUM, }; extern void protos_l4_init(void); #endif /* TRAFGEN_L4_H */ itory'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2016-11-07 18:03:13 -0700
committerJonathan Corbet <corbet@lwn.net>2016-11-07 18:03:13 -0700
commitca4354543a7d7f5a6ed50b01b42a61f1d42e725d (patch)
treeb8db026ae8bec0d5b2d638729a9baa03c30fb976
parent63ac0cf9375f038583616abfb72b8d9368d94f6b (diff)
docs: Fix a PDF build error in bug-bisect.rst
It seems we can't have literal blocks in footnotes, which almost actually makes some sense. So just use basic ``monospace`` instead. Signed-off-by: Jonathan Corbet <corbet@lwn.net>