43c320bb8577f1a7f5cd11cf70b7643d15c9a843
[trust_router.git] / include / trp_ptable.h
1 /*
2  * Copyright (c) 2016, 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 _TRP_PTABLE_H_
36 #define _TRP_PTABLE_H_
37
38 #include <time.h>
39 #include <talloc.h>
40
41 #include <tr_name_internal.h>
42 #include <tr_gss_names.h>
43 #include <trust_router/trp.h>
44 #include <tr_filter.h>
45 #include <trp_peer.h>
46
47 typedef struct trp_ptable {
48   TRP_PEER *head; /* head of a peer table list */
49 } TRP_PTABLE;
50
51 /* iterator for the peer table */
52 typedef TRP_PEER *TRP_PTABLE_ITER;
53
54 TRP_PTABLE *trp_ptable_new(TALLOC_CTX *memctx);
55 void trp_ptable_free(TRP_PTABLE *ptbl);
56 TRP_RC trp_ptable_add(TRP_PTABLE *ptbl, TRP_PEER *newpeer);
57 TRP_RC trp_ptable_remove(TRP_PTABLE *ptbl, TRP_PEER *peer);
58 TRP_PEER *trp_ptable_find_gss_name(TRP_PTABLE *ptbl, TR_NAME *gssname);
59 TRP_PEER *trp_ptable_find_servicename(TRP_PTABLE *ptbl, TR_NAME *servicename);
60
61 TRP_PTABLE_ITER *trp_ptable_iter_new(TALLOC_CTX *mem_ctx);
62 TRP_PEER *trp_ptable_iter_first(TRP_PTABLE_ITER *iter, TRP_PTABLE *ptbl);
63 TRP_PEER *trp_ptable_iter_next(TRP_PTABLE_ITER *iter);
64 void trp_ptable_iter_free(TRP_PTABLE_ITER *iter);
65
66 /* trp_ptable_encoders.c */
67 char *trp_ptable_to_str(TALLOC_CTX *memctx, TRP_PTABLE *ptbl, const char *sep, const char *lineterm);
68
69 #endif /* _TRP_PTABLE_H_ */