Home
last modified time | relevance | path

Searched refs:ag_type (Results 1 – 2 of 2) sorted by relevance

/freebsd/usr.sbin/ctld/
H A Dctld.cc180 if (ag_type != auth_type::UNKNOWN && ag_type != type) { in set_type()
186 ag_type = type; in set_type()
194 assert(ag_type == auth_type::UNKNOWN); in set_type()
196 ag_type = type; in set_type()
230 if (ag_type == auth_type::UNKNOWN) in add_chap()
231 ag_type = auth_type::CHAP; in add_chap()
232 if (ag_type != auth_type::CHAP) { in add_chap()
254 if (ag_type == auth_type::UNKNOWN) in add_chap_mutual()
255 ag_type = auth_type::CHAP_MUTUAL; in add_chap_mutual()
256 if (ag_type != auth_type::CHAP_MUTUAL) { in add_chap_mutual()
H A Dctld.hh102 auth_type type() const { return ag_type; } in type()
130 auth_type ag_type = auth_type::UNKNOWN; member