mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
30 lines
629 B
C++
30 lines
629 B
C++
#ifndef LLARP_EV_HPP
|
|
#define LLARP_EV_HPP
|
|
#include <llarp/ev.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
namespace llarp {
|
|
struct ev_io {
|
|
int fd;
|
|
ev_io(int f) : fd(f){};
|
|
virtual int read(void* buf, size_t sz) = 0;
|
|
virtual int sendto(const sockaddr* dst, const void* data, size_t sz) = 0;
|
|
virtual ~ev_io() { ::close(fd); };
|
|
};
|
|
}; // namespace llarp
|
|
|
|
struct llarp_ev_loop {
|
|
virtual bool init() = 0;
|
|
virtual int run() = 0;
|
|
virtual void stop() = 0;
|
|
|
|
virtual bool udp_listen(llarp_udp_io* l) = 0;
|
|
virtual bool udp_close(llarp_udp_io* l) = 0;
|
|
virtual bool close_ev(llarp::ev_io * ev) = 0;
|
|
|
|
virtual ~llarp_ev_loop(){};
|
|
};
|
|
|
|
#endif
|