uip_1.0.searchresults

来自「uip1.0的源码」· SEARCHRESULTS 代码 · 共 44 行

SEARCHRESULTS
44
字号
---- icmp Matches (46 in 4 files) ----
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* ICMP (echo) header. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):/* ICMP ECHO. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):/* ICMP TIME-EXCEEDED. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip): * Pointer to the ICMP/IP headers of the packet in the uip_buf buffer.
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip): * Send out an ICMP TIME-EXCEEDED message.
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip): * ICMP packet.
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* We don't send out ICMP errors for ICMP messages. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* Copy fields from packet header into payload of this ICMP packet. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* Set the ICMP type and code. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* Calculate the ICMP checksum. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* The size of the ICMP time exceeded packet is 36 + the size of the
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):     not yet configured, we should intercept all ICMP echo packets. */
Uip-fw.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* If the TTL reaches zero we produce an ICMP time exceeded message
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip): * well as some basic ICMP stuff). The implementation couples the IP,
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):       hasn't been assigned an IP address yet, we accept all ICMP
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  if(BUF->proto != UIP_PROTO_ICMP) { /* We only allow ICMP packets from
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_LOG("ip: neither tcp nor icmp.");
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  UIP_STAT(++uip_stat.icmp.recv);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* ICMP echo (i.e., ping) processing. This is simple, we only change
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):     the ICMP type from ECHO to ECHO_REPLY and adjust the ICMP
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_STAT(++uip_stat.icmp.drop);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_STAT(++uip_stat.icmp.typeerr);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_LOG("icmp: not icmp echo.");
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  UIP_STAT(++uip_stat.icmp.sent);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  UIP_STAT(++uip_stat.icmp.recv);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    /* ICMP echo (i.e., ping) processing. This is simple, we only
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):       change the ICMP type from ECHO to ECHO_REPLY and update the
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):       ICMP checksum before we return the packet. */
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_STAT(++uip_stat.icmp.sent);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_STAT(++uip_stat.icmp.drop);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_STAT(++uip_stat.icmp.typeerr);
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):    UIP_LOG("icmp: unknown ICMP message.");
Uip.c (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* End of IPv6 ICMP processing. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):			     were neither ICMP, UDP nor TCP. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):    uip_stats_t drop;     /**< Number of dropped ICMP packets. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):    uip_stats_t recv;     /**< Number of received ICMP packets. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):    uip_stats_t sent;     /**< Number of sent ICMP packets. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):    uip_stats_t typeerr;  /**< Number of ICMP packets with a wrong
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):  } icmp;                 /**< ICMP statistics. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):/* The ICMP and IP headers. */
Uip.h (c:\documents and settings\administrator\桌面\uip-1.0\uip):  /* ICMP (echo) header. */
Uipopt.h (c:\documents and settings\administrator\桌面\uip-1.0\uip): * the destination IP address of the first incoming "ping" (ICMP echo)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?