19aef6633ba032524398840b17fef244fffe06ed
[libradsec.git] / lib / include / radsec / request-impl.h
1 /* See the file COPYING for licensing information.  */
2
3 #if defined (__cplusplus)
4 extern "C" {
5 #endif
6
7 struct rs_request
8 {
9   struct rs_connection *conn;
10   struct event *timer;
11   struct rs_packet *req_msg;
12   struct rs_packet *resp_msg;
13   struct rs_conn_callbacks saved_cb;
14   void *saved_user_data;
15 };
16
17 #if defined (__cplusplus)
18 }
19 #endif