#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 */ t.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2016-05-28 08:01:20 +0300
committerDoug Ledford <dledford@redhat.com>2016-06-06 19:15:07 -0400
commita8b7da58ec81e74a3a6982e2dba24f899b56c915 (patch)
tree3a563bae609ef4ef174ac8277b90602327abb0f5
parent943f44d94aa26bfdcaafc40d3701e24eeb58edce (diff)
IB/hfi1: fix some indenting
That extra tabs are misleading. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com> Acked-by: Dennis Dalessandro <dennis.dalessandro@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>