An error occurred fetching the project authors.
  1. 03 Dec, 2006 7 commits
  2. 20 Oct, 2006 1 commit
  3. 12 Oct, 2006 2 commits
  4. 29 Sep, 2006 3 commits
  5. 22 Sep, 2006 5 commits
  6. 02 Aug, 2006 1 commit
    • Wei Yongjun's avatar
      [TCP]: SNMPv2 tcpAttemptFails counter error · 3687b1dc
      Wei Yongjun authored
      Refer to RFC2012, tcpAttemptFails is defined as following:
        tcpAttemptFails OBJECT-TYPE
            SYNTAX      Counter32
            MAX-ACCESS  read-only
            STATUS      current
            DESCRIPTION
                    "The number of times TCP connections have made a direct
                    transition to the CLOSED state from either the SYN-SENT
                    state or the SYN-RCVD state, plus the number of times TCP
                    connections have made a direct transition to the LISTEN
                    state from the SYN-RCVD state."
            ::= { tcp 7 }
      
      When I lookup into RFC793, I found that the state change should occured
      under following condition:
        1. SYN-SENT -> CLOSED
           a) Received ACK,RST segment when SYN-SENT state.
      
        2. SYN-RCVD -> CLOSED
           b) Received SYN segment when SYN-RCVD state(came from LISTEN).
           c) Received RST segment when SYN-RCVD state(came from SYN-SENT).
           d) Received SYN segment when SYN-RCVD state(came from SYN-SENT).
      
        3. SYN-RCVD -> LISTEN
           e) Received RST segment when SYN-RCVD state(came from LISTEN).
      
      In my test, those direct state transition can not be counted to
      tcpAttemptFails.
      Signed-off-by: default avatarWei Yongjun <yjwei@nanjing-fnst.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      3687b1dc
  7. 21 Jul, 2006 1 commit
  8. 08 Jul, 2006 1 commit
  9. 03 Jul, 2006 2 commits
  10. 30 Jun, 2006 2 commits
  11. 29 Jun, 2006 1 commit
  12. 18 Jun, 2006 1 commit
  13. 14 Apr, 2006 1 commit
    • Adrian Bunk's avatar
      [IPV4]: Possible cleanups. · 6c97e72a
      Adrian Bunk authored
      This patch contains the following possible cleanups:
      - make the following needlessly global function static:
        - arp.c: arp_rcv()
      - remove the following unused EXPORT_SYMBOL's:
        - devinet.c: devinet_ioctl
        - fib_frontend.c: ip_rt_ioctl
        - inet_hashtables.c: inet_bind_bucket_create
        - inet_hashtables.c: inet_bind_hash
        - tcp_input.c: sysctl_tcp_abc
        - tcp_ipv4.c: sysctl_tcp_tw_reuse
        - tcp_output.c: sysctl_tcp_mtu_probing
        - tcp_output.c: sysctl_tcp_base_mss
      Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6c97e72a
  14. 21 Mar, 2006 4 commits
  15. 01 Feb, 2006 2 commits
  16. 07 Jan, 2006 1 commit
  17. 04 Jan, 2006 2 commits
  18. 03 Jan, 2006 3 commits