1 /*
2  *	aprsc
3  *
4  *	(c) Matti Aarnio, OH2MQK, <oh2mqk@sral.fi>
5  *
6  *     This program is licensed under the BSD license, which can be found
7  *     in the file LICENSE.
8  *
9  */
10 
11 #ifndef UPLINK_H
12 #define UPLINK_H 1
13 
14 #include "worker.h"
15 
16 extern int uplink_reconfiguring;
17 extern int uplink_shutting_down;
18 
19 extern void uplink_thread(void *asdf);
20 extern void uplink_close(struct client_t *c, int errnum);
21 extern void uplink_start(void);
22 extern void uplink_stop(void);
23 extern int  uplink_login_handler(struct worker_t *self, struct client_t *c, int l4proto, char *s, int len);
24 
25 #endif /* FILTER_H */
26