Files
adsb-tools/adsbus/send.h

16 lines
303 B
C
Raw Normal View History

#pragma once
#include <stdbool.h>
struct flow;
2016-02-22 16:58:13 -08:00
struct packet;
struct peer;
void send_init(void);
void send_cleanup(void);
void *send_get_serializer(char *);
bool send_new_hello(int, void *, struct peer *);
void send_write(struct packet *);
void send_print_usage(void);
extern struct flow *send_flow;