Files
adsb-tools/adsbus/send.h

15 lines
360 B
C
Raw Normal View History

#pragma once
2016-02-27 12:41:56 -08:00
struct buf;
2016-02-22 16:58:13 -08:00
struct packet;
struct peer;
void send_init(void);
void send_cleanup(void);
struct serializer *send_get_serializer(char *);
void send_new(int, struct serializer *, struct peer *);
void send_new_wrapper(int, void *, struct peer *);
2016-02-27 12:41:56 -08:00
void send_hello(struct buf **, void *);
void send_write(struct packet *);
void send_print_usage(void);