Searched refs:packetid (Results 1 – 5 of 5) sorted by relevance
/third_party/curl/tests/server/ |
D | mqttd.c | 260 static int suback(FILE *dump, curl_socket_t fd, unsigned short packetid) in suback() argument 268 packet[2] = (unsigned char)(packetid >> 8); in suback() 269 packet[3] = (unsigned char)(packetid & 0xff); in suback() 283 static int puback(FILE *dump, curl_socket_t fd, unsigned short packetid) in puback() argument 290 packet[2] = (unsigned char)(packetid >> 8); in puback() 291 packet[3] = (unsigned char)(packetid & 0xff); in puback() 393 curl_socket_t fd, unsigned short packetid, in publish() argument 426 (void)packetid; in publish()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpqdmdepay.c | 332 guint packetid = payload[pos++]; in gst_rtp_qdm2_depay_process() local 338 packetid, packettype, packlen); in gst_rtp_qdm2_depay_process() 347 packetid, packettype, packlen); in gst_rtp_qdm2_depay_process() 353 add_packet (rtpqdm2depay, packetid, packlen + hsize, in gst_rtp_qdm2_depay_process()
|
/third_party/curl/lib/ |
D | mqtt.h | 45 unsigned int packetid; member
|
D | mqtt.c | 408 conn->proto.mqtt.packetid++; in mqtt_subscribe() 423 packet[1 + n] = (conn->proto.mqtt.packetid >> 8) & 0xff; in mqtt_subscribe() 424 packet[2 + n] = conn->proto.mqtt.packetid & 0xff; in mqtt_subscribe() 463 if(readbuf[0] != ((mqtt->packetid >> 8) & 0xff) || in mqtt_verify_suback() 464 readbuf[1] != (mqtt->packetid & 0xff) || in mqtt_verify_suback()
|
/third_party/libnl/lib/netfilter/ |
D | queue_msg_obj.c | 228 void nfnl_queue_msg_set_packetid(struct nfnl_queue_msg *msg, uint32_t packetid) in nfnl_queue_msg_set_packetid() argument 230 msg->queue_msg_packetid = packetid; in nfnl_queue_msg_set_packetid() 464 __ADD(QUEUE_MSG_ATTR_PACKETID, packetid),
|