X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=lib%2Finclude%2Fradsec%2Frequest-impl.h;h=bb61dd633b6ad48fb409880efdaee4b055bd71de;hb=937144b230752ac640e611cabb57387f613997bc;hp=339dfeaf8780d0fe94aa7edf60558a46ccaa1811;hpb=06936d1f263c456017e20ea6c74d2756e1e30fcc;p=radsecproxy.git diff --git a/lib/include/radsec/request-impl.h b/lib/include/radsec/request-impl.h index 339dfea..bb61dd6 100644 --- a/lib/include/radsec/request-impl.h +++ b/lib/include/radsec/request-impl.h @@ -1,10 +1,23 @@ -/* See the file COPYING for licensing information. */ +/* See LICENSE for licensing information. */ + +#ifndef _RADSEC_REQUEST_IMPL_H_ +#define _RADSEC_REQUEST_IMPL_H_ 1 + +#if defined (__cplusplus) +extern "C" { +#endif struct rs_request { struct rs_connection *conn; struct event *timer; - struct rs_packet *req; - struct rs_packet *resp; + struct rs_packet *req_msg; struct rs_conn_callbacks saved_cb; + void *saved_user_data; }; + +#if defined (__cplusplus) +} +#endif + +#endif /* _RADSEC_REQUEST_IMPL_H_ */