Files
librxpc/session_libevent.h
Orlando Chamberlain 68b29b5350 temp
i think some of the changes here might be by mrarm not me but ive
forgotten
2024-06-22 19:44:17 +10:00

18 lines
440 B
C

#ifndef RXPC_HTTP2_LIBEVENT_H
#define RXPC_HTTP2_LIBEVENT_H
#include "session.h"
#include "stream.h"
#include <event2/bufferevent.h>
struct rxpc_libevent_session {
struct rxpc_session session;
struct bufferevent *bev;
struct rxpc_stream_callbacks *ready_cbs;
};
struct rxpc_libevent_session *rxpc_libevent_session_create(
struct event_base *evbase, struct rxpc_stream_callbacks *ready_cbs);
#endif //RXPC_HTTP2_LIBEVENT_H