Symbol: conf_get_str
sbin/isakmpd/attribute.c
101
name = conf_get_str(section, tag);
sbin/isakmpd/conf.c
162
else if (conf_get_str(section, tag)) {
sbin/isakmpd/conf.c
674
char *value = conf_get_str(section, tag);
sbin/isakmpd/conf.c
689
char *value = conf_get_str(section, tag);
sbin/isakmpd/conf.c
703
char *value = conf_get_str(section, tag);
sbin/isakmpd/conf.c
761
liststr = conf_get_str(section, tag);
sbin/isakmpd/conf.h
96
extern char *conf_get_str(char *, char *);
sbin/isakmpd/connection.c
323
local_id = conf_get_str(name, "Local-ID");
sbin/isakmpd/connection.c
330
remote_id = conf_get_str(name, "Remote-ID");
sbin/isakmpd/exchange.c
1007
policy = conf_get_str(name, "Configuration");
sbin/isakmpd/exchange.c
1012
str = conf_get_str(policy, "DOI");
sbin/isakmpd/exchange.c
1030
str = conf_get_str(policy, "EXCHANGE_TYPE");
sbin/isakmpd/exchange.c
1775
trpt = conf_get_str(name, "Transport");
sbin/isakmpd/exchange.c
1794
peer = conf_get_str(name, "ISAKMP-peer");
sbin/isakmpd/exchange.c
728
tag = conf_get_str(name, "Configuration");
sbin/isakmpd/exchange.c
734
str = conf_get_str(tag, "DOI");
sbin/isakmpd/exchange.c
746
str = conf_get_str(tag, "EXCHANGE_TYPE");
sbin/isakmpd/exchange.c
774
exchange->policy = name ? conf_get_str(name, "Configuration") : 0;
sbin/isakmpd/exchange.c
863
tag = conf_get_str(name, "Configuration");
sbin/isakmpd/exchange.c
872
str = conf_get_str(tag, "DOI");
sbin/isakmpd/exchange.c
885
str = conf_get_str(tag, "EXCHANGE_TYPE");
sbin/isakmpd/exchange.c
914
exchange->policy = name ? conf_get_str(name, "Configuration") : 0;
sbin/isakmpd/exchange.c
982
name = conf_get_str("Phase 1", str);
sbin/isakmpd/exchange.c
999
name = conf_get_str("Phase 1", "Default");
sbin/isakmpd/ike_auth.c
1126
fstr = conf_get_str("General", "Pubkey-directory");
sbin/isakmpd/ike_auth.c
146
key = conf_get_str(id, "Authentication");
sbin/isakmpd/ike_auth.c
148
key = conf_get_str(local_id, "Authentication");
sbin/isakmpd/ike_auth.c
184
if (local_id && (keyfile = conf_get_str("KeyNote",
sbin/isakmpd/ike_auth.c
264
keyfile = conf_get_str("X509-certificates",
sbin/isakmpd/ike_auth.c
290
keyfile = conf_get_str("X509-certificates",
sbin/isakmpd/ike_auth.c
859
buf = (u_int8_t *)conf_get_str(exchange->name, "Credentials");
sbin/isakmpd/ike_auth.c
949
buf = (u_int8_t *)conf_get_str(exchange->name, "PKAuthentication");
sbin/isakmpd/ike_phase_1.c
1024
p = conf_get_str(rs, "Address");
sbin/isakmpd/ike_phase_1.c
1055
p = conf_get_str(rs, "Name");
sbin/isakmpd/ike_phase_1.c
1284
str = conf_get_str(xf->field, tag);
sbin/isakmpd/ike_phase_1.c
1327
!strcmp(conf_get_str(xf->field, "Life"), "ANY")) {
sbin/isakmpd/ike_phase_1.c
1349
str = conf_get_str(life->field, "LIFE_TYPE");
sbin/isakmpd/ike_phase_1.c
1380
str = conf_get_str(vs->life, "LIFE_DURATION");
sbin/isakmpd/ike_phase_1.c
230
attr = (u_int8_t *)conf_get_str(xf->field,
sbin/isakmpd/ike_phase_1.c
805
my_id = conf_get_str(exchange->name, "ID");
sbin/isakmpd/ike_phase_1.c
808
my_id = conf_get_str("General", "Default-phase-1-ID");
sbin/isakmpd/ike_phase_1.c
839
data = conf_get_str(my_id, "Address");
sbin/isakmpd/ike_phase_1.c
860
data = conf_get_str(my_id, "Network");
sbin/isakmpd/ike_phase_1.c
877
data = conf_get_str(my_id, "Netmask");
sbin/isakmpd/ike_phase_1.c
899
data = conf_get_str(my_id, "Name");
sbin/isakmpd/ike_phase_1.c
998
rs = conf_get_str(exchange->name, "Remote-ID");
sbin/isakmpd/ike_quick_mode.c
103
strncmp("yes", conf_get_str("General", "Use-Keynote"), 3))
sbin/isakmpd/ike_quick_mode.c
1783
strncmp("yes", conf_get_str("General", "Use-Keynote"), 3)) {
sbin/isakmpd/ike_quick_mode.c
502
protocol_id = conf_get_str(prot->field, "PROTOCOL_ID");
sbin/isakmpd/ike_quick_mode.c
573
transform_id = conf_get_str(xf->field,
sbin/isakmpd/ike_quick_mode.c
629
name = conf_get_str(xf->field,
sbin/isakmpd/ike_quick_mode.c
724
(u_int8_t *)conf_get_str(xf->field,
sbin/isakmpd/ike_quick_mode.c
907
local_id = conf_get_str(exchange->name, "Local-ID");
sbin/isakmpd/ike_quick_mode.c
908
remote_id = conf_get_str(exchange->name, "Remote-ID");
sbin/isakmpd/ipsec.c
1635
conf_get_str("General", "Acquire-Only")))
sbin/isakmpd/ipsec.c
1960
pstr = conf_get_str(section, "Protocol");
sbin/isakmpd/ipsec.c
1977
pstr = conf_get_str(section, "Port");
sbin/isakmpd/ipsec.c
2008
type = conf_get_str(section, "ID-type");
sbin/isakmpd/ipsec.c
2030
address = conf_get_str(section, "Address");
sbin/isakmpd/ipsec.c
2060
address = conf_get_str(section, "Network");
sbin/isakmpd/ipsec.c
2071
netmask = conf_get_str(section, "Netmask");
sbin/isakmpd/ipsec.c
2509
type = conf_get_str(section, "ID-type");
sbin/isakmpd/ipsec.c
2530
data = conf_get_str(section, "Name");
sbin/isakmpd/ipsec.c
325
(format = conf_get_str(section, "PF-Tag")) == NULL)
sbin/isakmpd/ipsec.c
398
(value = conf_get_str(section, "Interface")) == NULL)
sbin/isakmpd/ipsec.c
551
conf_get_str("General", "Acquire-Only") ||
sbin/isakmpd/ipsec.c
587
nat = conf_get_str(name, "NAT-ID");
sbin/isakmpd/isakmp_cfg.c
128
cfg_mode = conf_get_str(id_string, "Mode");
sbin/isakmpd/isakmp_cfg.c
174
if (conf_get_str(id_string, "Lifetime")) {
sbin/isakmpd/isakmpd.c
309
strncmp("no", conf_get_str("General", "Delete-SAs"), 2)) {
sbin/isakmpd/pf_key_v2.c
1063
ssa.sadb_sa_replay = conf_get_str("General", "Shared-SADB") ? 0 :
sbin/isakmpd/pf_key_v2.c
1439
conf_get_str("General", "Shared-SADB"))) {
sbin/isakmpd/pf_key_v2.c
1926
if (!conf_get_str(section, "Phase"))
sbin/isakmpd/pf_key_v2.c
1946
configname = conf_get_str(section, "Configuration");
sbin/isakmpd/pf_key_v2.c
1950
localid = conf_get_str(section, "Local-ID");
sbin/isakmpd/pf_key_v2.c
1953
remoteid = conf_get_str(section, "Remote-ID");
sbin/isakmpd/pf_key_v2.c
1956
ikepeer = conf_get_str(section, "ISAKMP-peer");
sbin/isakmpd/pf_key_v2.c
1961
remoteid = conf_get_str(ikepeer, "Remote-ID");
sbin/isakmpd/pf_key_v2.c
1962
localid = conf_get_str(ikepeer, "ID");
sbin/isakmpd/pf_key_v2.c
1963
configname = conf_get_str(ikepeer, "Configuration");
sbin/isakmpd/pf_key_v2.c
2663
if (!conf_get_str(srcid, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
2737
if (!conf_get_str(srcid, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
2807
if (!conf_get_str(dstid, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
2880
if (!conf_get_str(dstid, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
2912
if (!conf_get_str(conn, "Phase"))
sbin/isakmpd/pf_key_v2.c
2977
if (!conf_get_str(lname, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
3028
if (!conf_get_str(dname, "ID-type")) {
sbin/isakmpd/pf_key_v2.c
3083
if (!conf_get_str(configname, "Exchange_type")) {
sbin/isakmpd/pf_key_v2.c
3091
if (conf_get_str("General", "Default-phase-2-suites")) {
sbin/isakmpd/pf_key_v2.c
3093
conf_get_str("General", "Default-phase-2-suites"),
sbin/isakmpd/pf_key_v2.c
3109
if (!conf_get_str(peer, "Phase")) {
sbin/isakmpd/pf_key_v2.c
3128
if (!conf_get_str(confname, "exchange_type")) {
sbin/isakmpd/pf_key_v2.c
3129
xform = conf_get_str("Default-phase-1-configuration",
sbin/isakmpd/policy.c
1937
strncmp("yes", conf_get_str("General", "Use-Keynote"), 3))
sbin/isakmpd/policy.c
1941
policy_file = conf_get_str("General", "Policy-file");
sbin/isakmpd/policy.c
2133
dirname = conf_get_str("KeyNote", "Credential-directory");
sbin/isakmpd/sa.c
1258
tag = conf_get_str("General", "Renegotiate-on-HUP");
sbin/isakmpd/udp.c
276
port_str = conf_get_str(name, "Port");
sbin/isakmpd/udp.c
282
addr_str = conf_get_str(name, "Address");
sbin/isakmpd/udp.c
293
addr_str = conf_get_str(name, "Local-address");
sbin/isakmpd/udp_encap.c
236
port_str = conf_get_str(name, "Port"); /* XXX "Encap-port" ? */
sbin/isakmpd/udp_encap.c
242
addr_str = conf_get_str(name, "Address");
sbin/isakmpd/udp_encap.c
254
addr_str = conf_get_str(name, "Local-address");
sbin/isakmpd/ui.c
235
v = conf_get_str(section, tag);
sbin/isakmpd/ui.c
262
v = conf_get_str(section, tag);
sbin/isakmpd/x509.c
777
dirname = conf_get_str("X509-certificates", "CA-directory");
sbin/isakmpd/x509.c
796
dirname = conf_get_str("X509-certificates", "Cert-directory");
sbin/isakmpd/x509.c
826
dirname = conf_get_str("X509-certificates", "CRL-directory");
sbin/isakmpd/x509.c
891
} else if (!conf_get_str("X509-certificates", "Accept-self-signed")) {