Merge branch 'logging_changes' of https://github.com/adam-bishop/trust_router
[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 #include <assert.h>
38
39 #include <tid_internal.h>
40
41 TR_EXPORT int tid_resp_get_result(TID_RESP *resp)
42 {
43   return(resp->result);
44 }
45
46 void tid_resp_set_result(TID_RESP *resp, int result)
47 {
48   resp->result = result;
49 }
50
51 TR_EXPORT TR_NAME *tid_resp_get_err_msg(TID_RESP *resp)
52 {
53   return(resp->err_msg);
54 }
55
56 void tid_resp_set_err_msg(TID_RESP *resp, TR_NAME *err_msg)
57 {
58   resp->err_msg = err_msg;
59 }
60
61 TR_EXPORT TR_NAME *tid_resp_get_rp_realm(TID_RESP *resp)
62 {
63   return(resp->rp_realm);
64 }
65
66 void tid_resp_set_rp_realm(TID_RESP *resp, TR_NAME *rp_realm)
67 {
68   resp->rp_realm = rp_realm;
69 }
70
71 TR_EXPORT TR_NAME *tid_resp_get_realm(TID_RESP *resp)
72 {
73   return(resp->realm);
74 }
75
76 void tid_resp_set_realm(TID_RESP *resp, TR_NAME *realm)
77 {
78   resp->realm = realm;
79 }
80
81 TR_EXPORT TR_NAME *tid_resp_get_comm(TID_RESP *resp)
82 {
83   return(resp->comm);
84 }
85
86 void tid_resp_set_comm(TID_RESP *resp, TR_NAME *comm)
87 {
88   resp->comm = comm;
89 }
90
91 TR_EXPORT TR_NAME *tid_resp_get_orig_coi(TID_RESP *resp)
92 {
93   return(resp->orig_coi);
94 }
95
96 void tid_resp_set_orig_coi(TID_RESP *resp, TR_NAME *orig_coi)
97 {
98   resp->orig_coi = orig_coi;
99 }
100
101 TR_EXPORT TID_SRVR_BLK *tid_resp_get_server(TID_RESP *resp,
102                                             size_t index)
103 {
104   assert(resp);
105   assert(index < resp->num_servers);
106   return(&(resp->servers[index]));
107 }
108
109 size_t tid_resp_get_num_servers(const TID_RESP *resp)
110 {
111   assert(resp);
112   return resp->num_servers;
113 }
114
115
116 const TID_PATH *tid_srvr_get_path( const TID_SRVR_BLK *block)
117 {
118   if (!block)
119     return NULL;
120   return (const TID_PATH *) block->path;
121 }
122
123 const TID_PATH *tid_resp_get_error_path( const TID_RESP *resp)
124 {
125   if (!resp)
126     return NULL;
127   return (const TID_PATH *) resp->error_path;
128 }
129
130 const TID_PATH *tid_resp_get_a_path( const TID_RESP *const_resp)
131 {
132   size_t index;
133   TID_SRVR_BLK *server;
134   TID_RESP *resp = (TID_RESP *) const_resp;
135   if (!resp)
136     return NULL;
137
138
139   if (resp->error_path)
140     return (const TID_PATH *) resp->error_path;
141   tid_resp_servers_foreach( resp, server, index) {
142     if (server->path)
143       return (const TID_PATH *) server->path;
144   }
145   return NULL;
146   
147 }