Symbol: xauth_rmconf
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1745
xauth_rmconf_used(struct xauth_rmconf **xauth_rmconf)
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1747
if (*xauth_rmconf == NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1748
*xauth_rmconf = racoon_malloc(sizeof(**xauth_rmconf));
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1749
if (*xauth_rmconf == NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1755
(*xauth_rmconf)->login = NULL;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1756
(*xauth_rmconf)->pass = NULL;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1757
(*xauth_rmconf)->state = 0;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1764
xauth_rmconf_delete(struct xauth_rmconf **xauth_rmconf)
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1766
if (*xauth_rmconf != NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1767
if ((*xauth_rmconf)->login != NULL)
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1768
vfree((*xauth_rmconf)->login);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1769
if ((*xauth_rmconf)->pass != NULL)
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1770
vfree((*xauth_rmconf)->pass);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1772
racoon_free(*xauth_rmconf);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1773
*xauth_rmconf = NULL;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1779
struct xauth_rmconf *
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1780
xauth_rmconf_dup(struct xauth_rmconf *xauth_rmconf)
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1782
struct xauth_rmconf *new;
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1784
if (xauth_rmconf != NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1792
memcpy(new, xauth_rmconf, sizeof(*new));
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1794
if (xauth_rmconf->login != NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1795
new->login = vdup(xauth_rmconf->login);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1802
if (xauth_rmconf->pass != NULL) {
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c
1803
new->pass = vdup(xauth_rmconf->pass);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.h
115
int xauth_rmconf_used(struct xauth_rmconf **);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.h
116
void xauth_rmconf_delete(struct xauth_rmconf **);
crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.h
117
struct xauth_rmconf * xauth_rmconf_dup(struct xauth_rmconf *);
crypto/dist/ipsec-tools/src/racoon/remoteconf.h
161
struct xauth_rmconf *xauth;