Make send_get_hello public, so we can use it in send_receive

This commit is contained in:
Ian Gulliver
2016-03-02 22:30:45 -08:00
parent 2f6db632b2
commit 77b9decbcd
2 changed files with 9 additions and 11 deletions

View File

@@ -1,14 +1,13 @@
#pragma once
#include <stdbool.h>
struct buf;
struct flow;
struct packet;
struct peer;
void send_init(void);
void send_cleanup(void);
void *send_get_serializer(char *);
void send_get_hello(struct buf **, void *);
void send_write(struct packet *);
void send_print_usage(void);
extern struct flow *send_flow;