Lines Matching refs:_frm
703 if (from != NULL && isccc_cc_definestring(_ctrl, "_frm", from) == NULL)
731 char *_frm, *_to;
747 * _frm and _to are optional.
749 _frm = NULL;
750 (void)isccc_cc_lookupstring(_ctrl, "_frm", &_frm);
757 result = createmessage(1, _to, _frm, serial, t, 0, &ack, false);
813 char *_frm, *_to, *type = NULL;
829 * _frm and _to are optional.
831 _frm = NULL;
832 (void)isccc_cc_lookupstring(_ctrl, "_frm", &_frm);
839 result = isccc_cc_createmessage(1, _to, _frm, serial, now, expires,
999 const char *_frm;
1020 * _frm and _to are optional.
1023 if (isccc_cc_lookupstring(_ctrl, "_frm", &tmp) != ISC_R_SUCCESS) {
1024 _frm = "";
1026 _frm = tmp;
1027 INSIST(_frm != NULL);
1040 if (has_whitespace(_frm) || has_whitespace(_to) ||
1045 len = strlen(_frm) + strlen(_to) + strlen(_ser) + strlen(_tim) + 4;
1050 snprintf(key, len, "%s;%s;%s;%s", _frm, _to, _ser, _tim);