1ff4b29e5d72eb669a9a6a02b47d336f235c8d63
[trust_router.git] / include / tr_rp_client.h
1 /*
2  * Copyright (c) 2012-2018, 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 #ifndef TRUST_ROUTER_TR_RP_CLIENT_H
36 #define TRUST_ROUTER_TR_RP_CLIENT_H
37
38 #include <talloc.h>
39
40 #include <tr_gss_names.h>
41 #include <tr_filter.h>
42
43 typedef struct tr_rp_client {
44   struct tr_rp_client *next;
45   struct tr_rp_client *comm_next;
46   TR_GSS_NAMES *gss_names;
47   TR_FILTER_SET *filters;
48 } TR_RP_CLIENT;
49
50 typedef struct tr_rp_client *TR_RP_CLIENT_ITER;
51
52 /* tr_rp_client.c */
53 TR_RP_CLIENT *tr_rp_client_new(TALLOC_CTX *mem_ctx);
54 void tr_rp_client_free(TR_RP_CLIENT *client);
55 TR_RP_CLIENT *tr_rp_client_add_func(TR_RP_CLIENT *clients, TR_RP_CLIENT *new);
56 #define tr_rp_client_add(clients,new) ((clients)=tr_rp_client_add_func((clients),(new)))
57 int tr_rp_client_add_gss_name(TR_RP_CLIENT *client, TR_NAME *name);
58 int tr_rp_client_set_filters(TR_RP_CLIENT *client, TR_FILTER_SET *filts);
59 TR_RP_CLIENT_ITER *tr_rp_client_iter_new(TALLOC_CTX *memctx);
60 void tr_rp_client_iter_free(TR_RP_CLIENT_ITER *iter);
61 TR_RP_CLIENT *tr_rp_client_iter_first(TR_RP_CLIENT_ITER *iter, TR_RP_CLIENT *rp_clients);
62 TR_RP_CLIENT *tr_rp_client_iter_next(TR_RP_CLIENT_ITER *iter);
63 TR_RP_CLIENT *tr_rp_client_lookup(TR_RP_CLIENT *rp_clients, TR_NAME *gss_name);
64
65 /* tr_rp_client_encoders.c */
66 json_t *tr_rp_clients_to_json(TR_RP_CLIENT *rp_clients);
67
68 #endif //TRUST_ROUTER_TR_RP_CLIENT_H