Move FORMAT parsing into send code.

This commit is contained in:
Ian Gulliver
2016-03-08 12:22:46 -08:00
parent d5eb4a919e
commit cd302a1746
8 changed files with 37 additions and 38 deletions

View File

@@ -1,5 +1,7 @@
#pragma once
#include <stdbool.h>
struct buf;
struct flow;
struct packet;
@@ -10,4 +12,5 @@ void *send_get_serializer(const char *);
void send_get_hello(struct buf **, void *);
void send_write(struct packet *);
void send_print_usage(void);
bool send_add(bool (*)(const char *, struct flow *, void *), struct flow *, const char *);
extern struct flow *send_flow;