2016-02-17 17:19:57 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#define PARSER_STATE_LEN 256
|
|
|
|
|
|
2016-02-29 17:12:06 -08:00
|
|
|
struct flow;
|
2016-02-24 20:15:09 -08:00
|
|
|
|
2016-03-03 22:00:02 -08:00
|
|
|
void receive_init(void);
|
2016-02-25 23:37:37 -08:00
|
|
|
void receive_cleanup(void);
|
|
|
|
|
void receive_print_usage(void);
|
2016-02-29 17:12:06 -08:00
|
|
|
extern struct flow *receive_flow;
|