Searched refs:ipc_hdr (Results 1 – 1 of 1) sorted by relevance
/titanic_50/usr/src/lib/libdns_sd/common/ |
H A D | dnssd_clientstub.c | 112 ipc_msg_hdr ipc_hdr; member 973 int result = read_all(sdRef->sockfd, (void *)&cbh.ipc_hdr, sizeof(cbh.ipc_hdr)); in DNSServiceProcessResult() 1006 ConvertHeaderBytes(&cbh.ipc_hdr); in DNSServiceProcessResult() 1007 if (cbh.ipc_hdr.version != VERSION) in DNSServiceProcessResult() 1009 …ceProcessResult daemon version %d does not match client version %d", cbh.ipc_hdr.version, VERSION); in DNSServiceProcessResult() 1014 data = malloc(cbh.ipc_hdr.datalen); in DNSServiceProcessResult() 1016 …if (read_all(sdRef->sockfd, data, cbh.ipc_hdr.datalen) < 0) // On error, read_all will write a mes… in DNSServiceProcessResult() 1040 cbh.cb_flags = get_flags (&ptr, data + cbh.ipc_hdr.datalen); in DNSServiceProcessResult() 1041 cbh.cb_interface = get_uint32 (&ptr, data + cbh.ipc_hdr.datalen); in DNSServiceProcessResult() 1042 cbh.cb_err = get_error_code(&ptr, data + cbh.ipc_hdr.datalen); in DNSServiceProcessResult() [all …]
|