Lines Matching refs:reply
175 /* use reply buffer as temporary storage */
342 ICMP_ECHO_REPLY *reply;
362 reply = (ICMP_ECHO_REPLY *)pong->buf;
364 if (reply->Status == IP_SUCCESS)
366 if (reply->Options.OptionsSize != 0) /* don't do options */
369 /* need to remap &reply->Address ? */
372 if (reply->Options.Ttl <= 1)
374 --reply->Options.Ttl;
377 reqsize = reply->DataSize;
378 if ( (reply->Options.Flags & IP_FLAG_DF) != 0
390 ip->ip_tos = reply->Options.Tos;
393 ip->ip_ttl = reply->Options.Ttl;
395 ip->ip_src.s_addr = reply->Address;
404 m_append(pData, m, reqsize, reply->Data);
411 switch (reply->Status) {
434 Log2(("NAT: ping reply status %d, dropped\n", reply->Status));
439 reply->Status, type, code));
452 ip->ip_tos = reply->Options.Tos;
453 ip->ip_ttl = reply->Options.Ttl; /* XXX: decrement */
454 ip->ip_src.s_addr = reply->Address;