Encapsulate flow descriptions inside a struct.

This commit is contained in:
Ian Gulliver
2016-02-29 17:12:06 -08:00
parent 3539f9d640
commit 3fb3c02cf5
12 changed files with 83 additions and 68 deletions

View File

@@ -1,11 +1,11 @@
#pragma once
#include <stdbool.h>
#define PARSER_STATE_LEN 256
struct flow;
struct peer;
void receive_cleanup(void);
void receive_new(int, void *, struct peer *);
void receive_print_usage(void);
extern struct flow *receive_flow;