Home
last modified time | relevance | path

Searched refs:v4sizeof (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/ntp/ntpdc/
H A Dntpdc_ops.c377 !checkitemsize(itemsize, v4sizeof(struct info_peer_list))) in peerlist()
464 !checkitemsize(itemsize, v4sizeof(struct info_peer_summary))) in dopeers()
702 sendsize = v4sizeof(struct info_peer_list); in showpeer()
740 !checkitemsize(itemsize, v4sizeof(struct info_peer))) in showpeer()
776 sendsize = v4sizeof(struct info_peer_list); in peerstats()
817 !checkitemsize(itemsize, v4sizeof(struct info_peer_stats))) in peerstats()
980 !checkitemsize(itemsize, v4sizeof(struct info_sys))) in sysinfo()
1355 sendsize = v4sizeof(struct conf_peer); in doconfig()
1504 sendsize = v4sizeof(struct conf_unpeer); in unconfig()
1717 !checkitemsize(itemsize, v4sizeof(struct info_restrict))) in reslist()
[all …]
/freebsd/contrib/ntp/ntpd/
H A Dntp_request.c46 #define v6sizeof(type) (client_v6_capable ? sizeof(type) : v4sizeof(type))
125 { REQ_PEER_INFO, NOAUTH, v4sizeof(struct info_peer_list),
127 { REQ_PEER_STATS, NOAUTH, v4sizeof(struct info_peer_list),
135 { REQ_CONFIG, AUTH, v4sizeof(struct conf_peer),
137 { REQ_UNCONFIG, AUTH, v4sizeof(struct conf_unpeer),
144 { REQ_RESADDFLAGS, AUTH, v4sizeof(struct conf_restrict),
146 { REQ_RESSUBFLAGS, AUTH, v4sizeof(struct conf_restrict),
148 { REQ_UNRESTRICT, AUTH, v4sizeof(struct conf_restrict),
153 { REQ_RESET_PEER, AUTH, v4sizeof(struct conf_unpeer),
160 { REQ_ADD_TRAP, AUTH, v4sizeof(struc
[all...]
/freebsd/contrib/ntp/include/
H A Dntp_request.h305 #define v4sizeof(type) offsetof(type, v6_flag) macro