Searched refs:DNS_SD_PROTO_SIZE (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/subsys/net/lib/dns/ |
D | dns_sd.c | 232 if (proto_size != DNS_SD_PROTO_SIZE) { in proto_is_valid() 234 proto, proto_size, DNS_SD_PROTO_SIZE); in proto_is_valid() 238 if (!(strncasecmp("_tcp", proto, DNS_SD_PROTO_SIZE) == 0 || in proto_is_valid() 239 strncasecmp("_udp", proto, DNS_SD_PROTO_SIZE) == 0)) { in proto_is_valid() 757 if (strncmp("_tcp", inst->proto, DNS_SD_PROTO_SIZE) == 0) { in dns_sd_handle_ptr_query() 759 } else if (strncmp("_udp", inst->proto, DNS_SD_PROTO_SIZE) == 0) { in dns_sd_handle_ptr_query() 856 if (strncmp("_tcp", inst->proto, DNS_SD_PROTO_SIZE) == 0) { in dns_sd_handle_service_type_enum() 858 } else if (strncmp("_udp", inst->proto, DNS_SD_PROTO_SIZE) == 0) { in dns_sd_handle_service_type_enum() 878 + DNS_LABEL_LEN_SIZE + DNS_SD_PROTO_SIZE in dns_sd_handle_service_type_enum() 897 + DNS_LABEL_LEN_SIZE + DNS_SD_PROTO_SIZE in dns_sd_handle_service_type_enum() [all …]
|
/Zephyr-latest/include/zephyr/net/ |
D | dns_sd.h | 50 #define DNS_SD_PROTO_SIZE 4 macro
|
/Zephyr-latest/tests/net/lib/mdns_responder/src/ |
D | main.c | 35 char proto[DNS_SD_PROTO_SIZE + NULL_CHAR_SIZE];
|
/Zephyr-latest/tests/net/lib/dns_sd/src/ |
D | main.c | 773 char proto[DNS_SD_PROTO_SIZE + 1]; in ZTEST()
|