Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/host/security_key/
H A Dsecurity_key_message_reader_impl.cc68 uint32_t message_length_bytes = 0; in ReadMessage() local
69 if (!ReadFromStream(reinterpret_cast<char*>(&message_length_bytes), 4)) { in ReadMessage()
74 if (!SecurityKeyMessage::IsValidMessageSize(message_length_bytes)) { in ReadMessage()
75 LOG(ERROR) << "Message size is invalid: " << message_length_bytes; in ReadMessage()
80 std::string message_data(message_length_bytes, '\0'); in ReadMessage()
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/ServiceRegistration/
H A Dioloop.c539 read_ptr = connection->message_length_bytes; in tcp_read_callback()
590 connection->message_length = (((uint16_t)connection->message_length_bytes[0] << 8) | in tcp_read_callback()
591 ((uint16_t)connection->message_length_bytes[1])); in tcp_read_callback()
H A Dioloop.h173 uint8_t message_length_bytes[2]; member