Files
adsb-tools/adsbus/exec.h
2016-02-28 15:53:55 -08:00

12 lines
297 B
C

#pragma once
#include <stdint.h>
struct buf;
struct peer;
void exec_cleanup(void);
typedef void (*exec_connection_handler)(int fd, void *, struct peer *);
typedef void (*exec_get_hello)(struct buf **, void *);
void exec_new(char *, exec_connection_handler, exec_get_hello, void *, uint32_t *);