Files
adsb-tools/adsbus/outgoing.h
2016-02-27 12:41:56 -08:00

10 lines
308 B
C

#pragma once
struct buf;
struct peer;
void outgoing_cleanup(void);
typedef void (*outgoing_connection_handler)(int fd, void *, struct peer *);
typedef void (*outgoing_get_hello)(struct buf **, void *);
void outgoing_new(char *, char *, outgoing_connection_handler, outgoing_get_hello, void *, uint32_t *);