Lines Matching defs:_frm
742 isccc_cc_definestring(_ctrl, "_frm", from) == NULL)
771 char *_frm, *_to;
785 * _frm and _to are optional.
787 _frm = NULL;
788 (void)isccc_cc_lookupstring(_ctrl, "_frm", &_frm);
795 result = createmessage(1, _to, _frm, serial, t, 0, &ack, ISC_FALSE);
847 char *_frm, *_to, *type = NULL;
861 * _frm and _to are optional.
863 _frm = NULL;
864 (void)isccc_cc_lookupstring(_ctrl, "_frm", &_frm);
871 result = isccc_cc_createmessage(1, _to, _frm, serial, now, expires,
1027 const char *_frm;
1046 * _frm and _to are optional.
1049 if (isccc_cc_lookupstring(_ctrl, "_frm", &tmp) != ISC_R_SUCCESS)
1050 _frm = "";
1052 _frm = tmp;
1062 if (has_whitespace(_frm) || has_whitespace(_to) ||
1065 len = strlen(_frm) + strlen(_to) + strlen(_ser) + strlen(_tim) + 4;
1069 snprintf(key, len, "%s;%s;%s;%s", _frm, _to, _ser, _tim);