You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rtpengine/daemon/cli.h

20 lines
357 B

#ifndef CLI_UDP_H_
#define CLI_UDP_H_
#include "socket.h"
#include "obj.h"
#include "tcp_listener.h"
struct cli {
struct obj obj;
struct callmaster *callmaster;
struct poller *poller;
struct streambuf_listener listeners[2];
};
struct cli *cli_new(struct poller *p, endpoint_t *, struct callmaster *m);
#endif /* CLI_UDP_H_ */