X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=include%2Ftrust_router%2Ftid.h;h=299b66aedd87b6042a181f6ffa5885d4325070b0;hb=32792249a45039b0a0e332091a499956498b55ca;hp=74281caf95f1a63cd19900be24ed4b17d9934063;hpb=83bbfd900aa88e30e3bfa220cc7b13328debb72f;p=trust_router.git diff --git a/include/trust_router/tid.h b/include/trust_router/tid.h index 74281ca..299b66a 100644 --- a/include/trust_router/tid.h +++ b/include/trust_router/tid.h @@ -40,7 +40,6 @@ #include #include -#include #include @@ -58,6 +57,8 @@ typedef struct tid_srvr_blk { DH *aaa_server_dh; /* AAA server's public dh information */ } TID_SRVR_BLK; +typedef struct _tr_constraint_set TR_CONSTRAINT_SET; + typedef struct tid_resp { TID_RC result; TR_NAME *err_msg; @@ -73,6 +74,7 @@ typedef struct tid_resp { typedef struct tidc_instance TIDC_INSTANCE; typedef struct tids_instance TIDS_INSTANCE; typedef struct tid_req TID_REQ; +typedef struct json_t json_t; typedef void (TIDC_RESP_FUNC)(TIDC_INSTANCE *, TID_REQ *, TID_RESP *, void *); @@ -90,6 +92,7 @@ struct tid_req { DH *tidc_dh; /* Client's public dh information */ TIDC_RESP_FUNC *resp_func; void *cookie; + json_t *json_references; /** References to objects dereferenced on request destruction*/ }; struct tidc_instance { @@ -114,7 +117,8 @@ struct tids_instance { void *cookie; }; -/* Utility funciton for TID_REQ structures, in tid/tid_req.c */ +/* Utility functions for TID_REQ structures, in tid/tid_req.c */ +TR_EXPORT TID_REQ *tid_req_new(void); TR_EXPORT TID_REQ *tid_req_get_next_req(TID_REQ *req); void tid_req_set_next_req(TID_REQ *req, TID_REQ *next_req); TR_EXPORT int tid_req_get_resp_sent(TID_REQ *req); @@ -139,6 +143,12 @@ 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); +/** Decrement a reference to #json when this tid_req is cleaned up. A + new reference is not created; in effect the caller is handing a + reference they already hold to the TID_REQ.*/ +void tid_req_cleanup_json(TID_REQ *, json_t *json); +void TR_EXPORT tid_req_free( TID_REQ *req); + /* Utility functions for TID_RESP structure, in tid/tid_resp.c */ TR_EXPORT TID_RC tid_resp_get_result(TID_RESP *resp); void tid_resp_set_result(TID_RESP *resp, TID_RC result);