Lines Matching defs:session
4 int on_frame_recv_callback(nghttp2_session *session, const nghttp2_frame *frame,
11 int on_begin_headers_callback(nghttp2_session *session,
18 int on_header_callback2(nghttp2_session *session, const nghttp2_frame *frame,
26 int before_frame_send_callback(nghttp2_session *session,
33 int on_frame_send_callback(nghttp2_session *session, const nghttp2_frame *frame,
40 void send_pending(nghttp2_session *session) {
43 auto n = nghttp2_session_mem_send(session, &data);
52 nghttp2_session *session;
67 nghttp2_session_server_new(&session, callbacks, nullptr);
71 nghttp2_submit_settings(session, NGHTTP2_FLAG_NONE, &iv, 1);
72 send_pending(session);
73 nghttp2_session_mem_recv(session, data, size);
74 send_pending(session);
76 nghttp2_session_del(session);