repo.or.cz
/
netsniff-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
flowtop: Change flows layout to 1-row view
[netsniff-ng.git]
/
trafgen_l4.h
blob
da73ebcc5280d337067a73357ded6933f8cc4f4f
1
#ifndef TRAFGEN_L4_H
2
#define TRAFGEN_L4_H
3
4
enum
udp_field
{
5
UDP_SPORT
,
6
UDP_DPORT
,
7
UDP_LEN
,
8
UDP_CSUM
,
9
};
10
11
enum
tcp_field
{
12
TCP_SPORT
,
13
TCP_DPORT
,
14
TCP_SEQ
,
15
TCP_ACK_SEQ
,
16
TCP_DOFF
,
17
TCP_CWR
,
18
TCP_ECE
,
19
TCP_URG
,
20
TCP_ACK
,
21
TCP_PSH
,
22
TCP_RST
,
23
TCP_SYN
,
24
TCP_FIN
,
25
TCP_WINDOW
,
26
TCP_CSUM
,
27
TCP_URG_PTR
,
28
};
29
30
extern
void
protos_l4_init
(
void
);
31
32
#endif
/* TRAFGEN_L4_H */