Lines Matching defs:refid
37 * Convert a refid & stratum to a string. If stratum is negative and the
38 * refid consists entirely of graphic chars, up to an optional
43 u_int32 refid,
53 * ntpd can have stratum = 0 and refid 127.0.0.1 in orphan mode.
54 * https://bugs.ntp.org/3854. Mirror the refid logic in timer().
56 if (0 == stratum && LOOPBACKADR_N == refid) {
63 memcpy(&text[1], &refid, sizeof(refid));
64 text[1 + sizeof(refid)] = '\0';
71 * This refid is expected to be up to 4 printable ASCII.
87 return numtoa(refid);