Lines Matching refs:outgoing

132 } incoming, outgoing;  variable
137 memset(outgoing.buffer, 0, length); in set_message()
138 outgoing.length = length; in set_message()
139 outgoing.header.length = htons(length); in set_message()
140 outgoing.header.type = CONTROL_MESSAGE; in set_message()
141 outgoing.header.cookie = MAGIC_COOKIE; in set_message()
142 outgoing.message = htons(message); in set_message()
147 send(the_socket, outgoing.buffer, outgoing.length, 0); in send_packet()
223 outgoing.sccrq.protocol_version = PROTOCOL_VERSION; in pptp_connect()
224 outgoing.sccrq.framing = htonl(3); in pptp_connect()
225 outgoing.sccrq.bearer = htonl(3); in pptp_connect()
226 outgoing.sccrq.channels = htons(1); in pptp_connect()
227 strcpy(outgoing.sccrq.host, "anonymous"); in pptp_connect()
291 outgoing.ocrq.call = local; in pptp_process()
292 outgoing.ocrq.serial = random(); in pptp_process()
293 outgoing.ocrq.minimum_speed = htonl(1000); in pptp_process()
294 outgoing.ocrq.maximum_speed = htonl(100000000); in pptp_process()
295 outgoing.ocrq.bearer = htonl(3); in pptp_process()
296 outgoing.ocrq.framing = htonl(3); in pptp_process()
297 outgoing.ocrq.window_size = htons(8192); in pptp_process()
353 outgoing.echorp.identifier = incoming.echorq.identifier; in pptp_process()
354 outgoing.echorp.result = RESULT_OK; in pptp_process()
367 outgoing.icrp.peer = incoming.icrq.call; in pptp_process()
368 outgoing.icrp.result = RESULT_ERROR; in pptp_process()
376 outgoing.ocrp.peer = incoming.ocrq.call; in pptp_process()
377 outgoing.ocrp.result = RESULT_ERROR; in pptp_process()