summaryrefslogtreecommitdiffstats
path: root/tapset/tcp.stp
diff options
context:
space:
mode:
authorwenji <wenji>2007-08-29 03:39:00 +0000
committerwenji <wenji>2007-08-29 03:39:00 +0000
commit03745668896c08fbca930331218583f01b38825c (patch)
treee2851705ca6d54c367b6a549f8a44d55c0c2ffdc /tapset/tcp.stp
parent36935be05b33cff8266d948fe2b295d807b571bc (diff)
downloadsystemtap-steved-03745668896c08fbca930331218583f01b38825c.tar.gz
systemtap-steved-03745668896c08fbca930331218583f01b38825c.tar.xz
systemtap-steved-03745668896c08fbca930331218583f01b38825c.zip
2007-08-28 Wenji Huang <wenji.huang@oracle.com>
* tcp.stp (sockstate): Fix typo.
Diffstat (limited to 'tapset/tcp.stp')
-rw-r--r--tapset/tcp.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/tcp.stp b/tapset/tcp.stp
index ce8986a6..82fee190 100644
--- a/tapset/tcp.stp
+++ b/tapset/tcp.stp
@@ -51,7 +51,7 @@ function tcp_get_info_snd_cwnd:long(sock:long)
//
//Definitions of the TCP protocol sk_state field listed below.
//
-// TCP_ESTABLISED = 1, Normal data transfer
+// TCP_ESTABLISHED = 1, Normal data transfer
// TCP_SYN_SENT = 2, App. has started to open a connection
// TCP_SYN_RECV = 3, A connection request has arrived; wait for ACK
// TCP_FIN_WAIT1 = 4, App. has said it is finished
@@ -247,7 +247,7 @@ probe begin(-1) {
sockopt[13] = "TCP_CONGESTION"
sockopt[14] = "TCP_MD5SIG"
- sockstate[1] = "TCP_ESTABLISED"
+ sockstate[1] = "TCP_ESTABLISHED"
sockstate[2] = "TCP_SYN_SENT"
sockstate[3] = "TCP_SYN_RECV"
sockstate[4] = "TCP_FIN_WAIT1"