X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=blobdiff_plain;f=include%2Ftrust_router%2Ftid.h;h=6aa3336e0ac8e2d450c3ad8384ebbaa5ab67c693;hp=870d60c47a560d04e128a1e37f6fde7e5e5630e7;hb=e427f7d366115d72ded50c2d8de7e7c4c37a773f;hpb=7b8f06ede21c614637e8bdc322bac9a95a44996e diff --git a/include/trust_router/tid.h b/include/trust_router/tid.h index 870d60c..6aa3336 100644 --- a/include/trust_router/tid.h +++ b/include/trust_router/tid.h @@ -35,6 +35,8 @@ #ifndef TID_H #define TID_H +#include + #include #include @@ -69,7 +71,7 @@ typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_REQ *, TID_RESP *, void *); typedef int (TIDS_REQ_FUNC)(TIDS_INSTANCE *, TID_REQ *, TID_RESP *, void *); -typedef int (tids_auth_func)(gss_name_t client_name, TR_NAME *display_name, void *cookie); +typedef int (TIDS_AUTH_FUNC)(gss_name_t client_name, TR_NAME *display_name, void *cookie); @@ -98,9 +100,12 @@ void tid_req_set_resp_func(TID_REQ *req, TIDC_RESP_FUNC *resp_func); TR_EXPORT void *tid_req_get_cookie(TID_REQ *req); void tid_req_set_cookie(TID_REQ *req, void *cookie); TR_EXPORT TID_REQ *tid_dup_req (TID_REQ *orig_req); -void TR_EXPORT tid_req_free( TID_REQ *req); +TR_EXPORT void tid_req_free( TID_REQ *req); /* Utility functions for TID_RESP structure, in tid/tid_resp.c */ + +TID_RESP *tid_resp_new(TALLOC_CTX *mem_ctx); +void tid_resp_free(TID_RESP *resp); TR_EXPORT int tid_resp_get_result(TID_RESP *resp); void tid_resp_set_result(TID_RESP *resp, int result); TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp); @@ -144,10 +149,14 @@ TR_EXPORT DH *tidc_set_dh(TIDC_INSTANCE *, DH *); TR_EXPORT void tidc_destroy (TIDC_INSTANCE *tidc); /* TID Server functions, in tid/tids.c */ -TR_EXPORT TIDS_INSTANCE *tids_create (void); +TR_EXPORT TIDS_INSTANCE *tids_create (TALLOC_CTX *mem_ctx); TR_EXPORT int tids_start (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, - tids_auth_func *auth_handler, const char *hostname, + TIDS_AUTH_FUNC *auth_handler, const char *hostname, + unsigned int port, void *cookie); +TR_EXPORT int tids_get_listener (TIDS_INSTANCE *tids, TIDS_REQ_FUNC *req_handler, + TIDS_AUTH_FUNC *auth_handler, const char *hostname, unsigned int port, void *cookie); +TR_EXPORT int tids_accept(TIDS_INSTANCE *tids, int listen); TR_EXPORT int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp); TR_EXPORT int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg); TR_EXPORT void tids_destroy (TIDS_INSTANCE *tids);