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/recording-daemon/custom_poller.h

19 lines
219 B

#ifndef __POLLER_H__
#define __POLLER_H__
#include <stdbool.h>
// dummy poller
struct poller {
enum {
PS_CLOSED = 0,
PS_CONNECTING,
PS_HANDSHAKE,
PS_OPEN,
PS_WRITE_BLOCKED,
PS_ERROR,
} state;
};
#endif