Make tid types opaque
[trust_router.git] / tid / tid_resp.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37
38 #include <tid_internal.h>
39
40 TR_EXPORT TID_RC tid_resp_get_result(TID_RESP *resp)
41 {
42   return(resp->result);
43 }
44
45 void tid_resp_set_result(TID_RESP *resp, TID_RC result)
46 {
47   resp->result = result;
48 }
49
50 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp)
51 {
52   return(resp->err_msg);
53 }
54
55 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg)
56 {
57   resp->err_msg = err_msg;
58 }
59
60 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp)
61 {
62   return(resp->rp_realm);
63 }
64
65 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm)
66 {
67   resp->rp_realm = rp_realm;
68 }
69
70 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp)
71 {
72   return(resp->realm);
73 }
74
75 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm)
76 {
77   resp->realm = realm;
78 }
79
80 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp)
81 {
82   return(resp->comm);
83 }
84
85 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm)
86 {
87   resp->comm = comm;
88 }
89
90 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp)
91 {
92   return(resp->orig_coi);
93 }
94
95 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi)
96 {
97   resp->orig_coi = orig_coi;
98 }
99
100 TR_EXPORT TID_SRVR_BLK *tid_resp_get_servers(TID_RESP *resp)
101 {
102   return(resp->servers);
103 }
104
105 void tid_resp_set_servers(TID_RESP *resp, TID_SRVR_BLK *servers)
106 {
107   resp->servers = servers;
108 }