/external/ipsec-tools/src/racoon/ |
sainfo.h | 1 /* $NetBSD: sainfo.h,v 1.5 2006/10/03 08:01:56 vanhu Exp $ */ 3 /* Id: sainfo.h,v 1.5 2006/07/09 17:19:38 manubsd Exp */ 40 struct sainfo { struct 61 LIST_ENTRY(sainfo) chain; 71 extern struct sainfo *getsainfo __P((const vchar_t *, 73 extern struct sainfo *newsainfo __P((void)); 74 extern void delsainfo __P((struct sainfo *)); 75 extern void inssainfo __P((struct sainfo *)); 76 extern void remsainfo __P((struct sainfo *)); 82 extern const char * sainfo2str __P((const struct sainfo *)); [all...] |
sainfo.c | 1 /* $NetBSD: sainfo.c,v 1.7.6.1 2007/08/01 11:52:22 vanhu Exp $ */ 3 /* $KAME: sainfo.c,v 1.16 2003/06/27 07:32:39 sakane Exp $ */ 64 #include "sainfo.h" 67 static LIST_HEAD(_sitree, sainfo) sitree, sitree_save, sitree_tmp; 76 * First pass is for sainfo from a specified peer, second for others. 78 struct sainfo * 83 struct sainfo *s = NULL; 84 struct sainfo *anonymous = NULL; 125 "evaluating sainfo: %s\n", sainfostr); 163 struct sainfo * [all...] |
proposal.h | 184 struct sainfo; 198 extern int set_satrnsbysainfo __P((struct saproto *, struct sainfo *));
|
handler.c | 78 #include "sainfo.h" 1079 struct sainfo *sainfo; local 1084 * Get the new sainfo using values of the old one 1086 if (iph2->sainfo != NULL) { 1087 iph2->sainfo = getsainfo(iph2->sainfo->idsrc, 1088 iph2->sainfo->iddst, iph2->sainfo->id_i, 1089 iph2->sainfo->remoteid) [all...] |
proposal.c | 63 #include "sainfo.h" 637 set_satrnsbysainfo(pr, sainfo) 639 struct sainfo *sainfo; 647 if (sainfo->algs[algclass_ipsec_auth] == NULL) { 653 for (a = sainfo->algs[algclass_ipsec_auth]; a; a = a->next) { 674 if (sainfo->algs[algclass_ipsec_enc] == NULL) { 680 for (a = sainfo->algs[algclass_ipsec_enc]; a; a = a->next) { 681 for (b = sainfo->algs[algclass_ipsec_auth]; b; b = b->next) { 700 if (sainfo->algs[algclass_ipsec_comp] == NULL) [all...] |
handler.h | 288 struct sainfo *sainfo; /* place holder of sainfo */ member in struct:ph2handle
|
pfkey.c | 95 #include "sainfo.h" 853 if (iph2->sainfo && iph2->sainfo->id_i) 1041 else if (iph2->sainfo && iph2->sainfo->id_i) 1328 else if (iph2->sainfo && iph2->sainfo->id_i) [all...] |
isakmp_quick.c | 86 #include "sainfo.h" 1066 /* get sainfo */ 1070 "failed to get sainfo.\n"); [all...] |
cfparse.y | 73 #include "sainfo.h" 150 static struct sainfo *cur_sainfo; 211 /* sainfo */ 212 %token SAINFO FROM 1122 /* sainfo */ 1124 : SAINFO 1128 yyerror("failed to allocate sainfo"); 1134 struct sainfo *check; 1159 yyerror("duplicated sainfo: %s", 1365 yyerror("failed to set sainfo xauth group.\n") [all...] |
cftoken.l | 277 /* sainfo */ 278 <S_INI>sainfo { BEGIN S_SAINF; YYDB; return(SAINFO); } 284 /* sainfo spec */
|
ipsec_doi.c | 77 #include "sainfo.h" [all...] |
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
racoon.conf | 27 sainfo anonymous {
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 35 sainfo anonymous {
|
/external/ipsec-tools/ |
setup.c | 46 #include "sainfo.h" 58 static struct sainfo sainfo; variable in typeref:struct:sainfo 76 if (!sainfo.algs[class]) { 77 sainfo.algs[class] = p; 79 struct sainfoalg *q = sainfo.algs[class]; 146 sainfo.lifetime = IPSECDOI_ATTR_SA_LD_SEC_DEFAULT; 147 sainfo.lifebyte = IPSECDOI_ATTR_SA_LD_KB_MAX; 645 /* sainfo.h */ 647 struct sainfo *getsainfo(const vchar_t *src, const vchar_t *dst [all...] |