Searched defs:ttl (Results 1 - 25 of 27) sorted by relevance

12

/vbox/src/VBox/Devices/Network/lwip/src/core/ipv6/
H A Dip6.c112 /* Decrement TTL and send ICMP if ttl == 0. */
262 u8_t ttl,
285 iphdr->hoplim = ttl;
323 u8_t ttl, u8_t proto)
334 return ip_output_if (p, src, dest, ttl, proto, netif);
261 ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, u8_t ttl, u8_t proto, struct netif *netif) argument
322 ip_output(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, u8_t ttl, u8_t proto) argument
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dpciextra.c22 int ttl = 48; local
39 while ( ttl-- && pos >= 0x40 ) {
/vbox/src/VBox/Devices/Network/lwip/src/core/ipv4/
H A Dip.c385 u8_t ttl, u8_t tos,
404 IPH_TTL_SET(iphdr, ttl);
453 u8_t ttl, u8_t tos, u8_t proto)
465 return ip_output_if(p, src, dest, ttl, tos, proto, netif);
492 LWIP_DEBUGF(IP_DEBUG, ("| %3"U16_F" | %3"U16_F" | 0x%04"X16_F" | (ttl, proto, chksum)\n",
384 ip_output_if(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) argument
452 ip_output(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest, u8_t ttl, u8_t tos, u8_t proto) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_ttl.c130 u_long ttl, tmp; local
133 ttl = 0;
158 ttl += tmp;
167 ttl += tmp;
169 *dst = ttl;
H A Dns_print.c126 * ns_sprintrrf(msg, msglen, name, class, type, ttl, rdata, rdlen,
135 u_long ttl, const u_char *rdata, size_t rdlen,
175 T(x = ns_format_ttl(ttl, buf, buflen));
133 ns_sprintrrf(const u_char *msg, size_t msglen, const char *name, ns_class class, ns_type type, u_long ttl, const u_char *rdata, size_t rdlen, const char *name_ctx, const char *origin, char *buf, size_t buflen) argument
H A Dres_mkupdate.c433 u_int class, u_int type, u_long ttl) {
440 rrecp->r_ttl = (u_int32_t)ttl;
432 res_mkupdrec(int section, const char *dname, u_int class, u_int type, u_long ttl) argument
H A Dres_update.c127 u_int32_t ttl; local
309 GETLONG(ttl, cp);
431 GETLONG(ttl, cp);
457 GETLONG(ttl, cp);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/baddof/
H A Dbaddof.c57 static int ttl, valid; local
91 ttl += rv;
93 if (ttl < 10000) {
98 printf("enabled %d probes; resetting device.\n", ttl);
111 ttl = 0;
139 ttl += rv;
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dvbsfmount.h30 int ttl; member in struct:vbsf_mount_info_old
48 int ttl; /* time to live */ member in struct:vbsf_mount_info_new
59 int ttl; member in struct:vbsf_mount_opts
H A Dvfsmod.h40 int ttl; member in struct:sf_glob_info
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dip.h41 uint8_t ttl; member in struct:iphdr
H A Ddns.h72 uint32_t ttl; member in struct:dns_rr_info_common
/vbox/src/VBox/Additions/freebsd/vboxvfs/
H A Dvboxvfs.h32 int ttl; member in struct:vboxvfs_mount_info
58 int ttl; member in struct:sf_glob_info
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprmapopt.c176 int ttl; local
178 PRUint8 ttl;
180 length = sizeof(ttl);
182 fd, level, name, (char*)&ttl, &length);
184 data->value.mcast_ttl = ttl;
319 int ttl; local
321 PRUint8 ttl;
323 ttl = data->value.mcast_ttl;
325 fd, level, name, (char*)&ttl, sizeof(ttl));
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip4.c730 * @param ttl the TTL value to be set in the IP header
743 u8_t ttl, u8_t tos,
747 return ip_output_if_opt(p, src, dest, ttl, tos, proto, netif, NULL, 0);
757 u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options,
817 IPH_TTL_SET(iphdr, ttl);
820 chk_sum += LWIP_MAKE_U16(proto, ttl);
911 * @param ttl the TTL value to be set in the IP header
920 u8_t ttl, u8_t tos, u8_t proto)
935 return ip_output_if(p, src, dest, ttl, tos, proto, netif);
948 * @param ttl th
742 ip_output_if(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif) argument
756 ip_output_if_opt(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen) argument
919 ip_output(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto) argument
958 ip_output_hinted(struct pbuf *p, ip_addr_t *src, ip_addr_t *dest, u8_t ttl, u8_t tos, u8_t proto, u8_t *addr_hint) argument
[all...]
/vbox/src/VBox/Devices/Network/slirp/
H A Dip_icmp.c467 int ttl; local
471 ttl = ip->ip_ttl;
472 Log(("NAT/ICMP: try to set TTL(%d)\n", ttl));
474 (void *)&ttl, sizeof(ttl));
H A Dip_icmpwin.c134 uint8_t ttl; local
142 ttl = ip->ip_ttl;
143 AssertReturnVoid(ttl > 0);
183 opts.Ttl = ttl;
443 * ICMP error was generated (we can guess it was 1 for ttl
H A Dudp.c95 int ttl, tos; local
304 ttl = ip->ip_ttl = save_ip.ip_ttl;
305 if (ttl != so->so_sottl) {
307 (char *)&ttl, sizeof(ttl));
309 so->so_sottl = ttl;
/vbox/src/VBox/NetworkServices/NAT/
H A Dpxping_win.c172 int ttl; local
193 ttl = IPH_TTL(iph);
195 if (RT_UNLIKELY(ttl == 1)) {
202 --ttl;
238 opts.Ttl = ttl;
428 * ICMP error was generated (we can guess it was 1 for ttl
H A Dpxudp.c76 int ttl; member in struct:pxudp
142 /* outbound ttl check */
307 pxudp->ttl = -1;
461 int ttl; local
464 ttl = IP6H_HOPLIM(ip6_current_header());
467 ttl = IPH_TTL(ip_current_header());
470 if (RT_UNLIKELY(ttl <= 1)) {
594 int ttl, tos, df; local
614 ttl = IPH_TTL(iph);
616 LWIP_ASSERT1(ttl >
662 int ttl; local
[all...]
H A Dpxping.c94 int ttl; member in struct:pxping
281 g_pxping.ttl = -1;
454 int df, ttl, tos; local
477 DPRINTF(("ping %p: %R[ping_pcb] seq %d len %u ttl %d\n",
482 ttl = IPH_TTL(iph);
484 if (RT_UNLIKELY(ttl == 1)) {
492 --ttl;
539 IPH_TTL_SET(iph, ttl); /* already decremented */
580 if (ttl != pxping->ttl) {
[all...]
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_dns.c64 uint16_t ttl[2]; member in struct:dnsmsg_answer
152 *(uint32_t *)ans->ttl = htonl(3600); /* 1h */
175 *(uint32_t *)ans->ttl = htonl(3600); /* 1h */
H A Dalias_nbt.c549 unsigned int ttl; member in struct:__anon14948
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Ddns.c162 u32_t ttl; member in struct:dns_answer
175 u32_t ttl; member in struct:dns_table_entry
700 if ((pEntry->ttl == 0) || (--pEntry->ttl == 0)) {
809 pEntry->ttl = ntohl(ans.ttl);
810 if (pEntry->ttl > DNS_MAX_TTL) {
811 pEntry->ttl = DNS_MAX_TTL;
822 if (pEntry->ttl == 0) {
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/arpa/
H A Dnameser.h147 uint32_t ttl; member in struct:__ns_rr
156 #define ns_rr_ttl(rr) ((u_long)(rr).ttl + 0)

Completed in 81 milliseconds

12