Lines Matching refs:xauth_rmconf
1667 xauth_rmconf_used(xauth_rmconf)
1668 struct xauth_rmconf **xauth_rmconf;
1670 if (*xauth_rmconf == NULL) {
1671 *xauth_rmconf = racoon_malloc(sizeof(**xauth_rmconf));
1672 if (*xauth_rmconf == NULL) {
1678 (*xauth_rmconf)->login = NULL;
1679 (*xauth_rmconf)->pass = NULL;
1680 (*xauth_rmconf)->state = 0;
1687 xauth_rmconf_delete(xauth_rmconf)
1688 struct xauth_rmconf **xauth_rmconf;
1690 if (*xauth_rmconf != NULL) {
1691 if ((*xauth_rmconf)->login != NULL)
1692 vfree((*xauth_rmconf)->login);
1693 if ((*xauth_rmconf)->pass != NULL)
1694 vfree((*xauth_rmconf)->pass);
1696 racoon_free(*xauth_rmconf);
1697 *xauth_rmconf = NULL;