Home | History | Annotate | Download | only in mtpd

Lines Matching refs:outgoing

119 } incoming, outgoing;
130 uint16_t *p = (uint16_t *)outgoing.buffer;
141 outgoing.message = message;
142 outgoing.length = MESSAGE_HEADER_SIZE;
148 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
153 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
168 uint16_t *p = (uint16_t *)outgoing.buffer;
169 p[1] = htons(outgoing.length);
170 send(the_socket, outgoing.buffer, outgoing.length, 0);
546 log_print(DEBUG, "Timeout -> Sending %s", messages[outgoing.message]);
547 send(the_socket, outgoing.buffer, outgoing.length, 0);