2018-02-08 13:47:31 +01:00
|
|
|
#ifndef SERVER_H
|
|
|
|
#define SERVER_H
|
|
|
|
|
2018-01-22 11:22:31 +01:00
|
|
|
#include "command.h"
|
|
|
|
|
2018-01-23 15:46:34 +01:00
|
|
|
process_t push_server(const char *serial);
|
|
|
|
process_t enable_tunnel(const char *serial, Uint16 local_port);
|
|
|
|
process_t disable_tunnel(const char *serial);
|
|
|
|
|
2018-02-01 16:36:50 +01:00
|
|
|
process_t start_server(const char *serial, Uint16 max_size, Uint32 bit_rate);
|
2018-01-22 11:22:31 +01:00
|
|
|
void stop_server(process_t server);
|
2018-02-08 13:47:31 +01:00
|
|
|
|
|
|
|
#endif
|