diff options
author | Vadim Kochan <vadim4j@gmail.com> | 2016-01-29 00:06:26 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2016-01-29 08:59:25 +0100 |
commit | d275f16591ca44d91ee4e56d65553529a429a62d (patch) | |
tree | 01b3095e29d9b13c5feceeb1b563f41e3f1f56f4 /trafgen | |
parent | be21df123309c83cd47a1fa5f2c0ee1cf4657810 (diff) |
trafgen: l4: Add UDP header generation logic
Add trafgen_l4.c module with generation UDP header fields.
UDP protocol generation logic automaticaly sets the protocol field of
the lower level protocol to IPPROTO_UDP by default (if it is IPv4).
Also checksum & length are calculated and set if it is not given by the
user.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'trafgen')
-rw-r--r-- | trafgen/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/trafgen/Makefile b/trafgen/Makefile index 4f342ca..3f78f07 100644 --- a/trafgen/Makefile +++ b/trafgen/Makefile @@ -22,6 +22,7 @@ trafgen-objs = xmalloc.o \ trafgen_proto.o \ trafgen_l2.o \ trafgen_l3.o \ + trafgen_l4.o \ trafgen_lexer.yy.o \ trafgen_parser.tab.o \ trafgen.o |