diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2007-10-03 09:10:57 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2007-10-03 09:10:57 -0400 |
commit | 988db1cf6f286e6b05b18246f28ea56ad449c27f (patch) | |
tree | d6e32ed26b7fcb4a4cb3e27ff7a3e75f0a28a6bb /tapset/socket.stp | |
parent | 10055f8a1dbf56541ec0126522ef4c1bc68de80a (diff) | |
parent | 94b2b2e65ad2255dd09c4939921128d13d25615d (diff) | |
download | systemtap-steved-988db1cf6f286e6b05b18246f28ea56ad449c27f.tar.gz systemtap-steved-988db1cf6f286e6b05b18246f28ea56ad449c27f.tar.xz systemtap-steved-988db1cf6f286e6b05b18246f28ea56ad449c27f.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapset/socket.stp')
-rw-r--r-- | tapset/socket.stp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tapset/socket.stp b/tapset/socket.stp index 77e322d2..1660dea3 100644 --- a/tapset/socket.stp +++ b/tapset/socket.stp @@ -692,7 +692,7 @@ function msg_flags_num2str:string (flags:long) # INTERNAL MAPPING ARRAYS # ########################### -global _prot_num2str[134], _prot_str2num[134] +global _prot_num2str[138], _prot_str2num[138] global _fam_num2str[32], _fam_str2num[32] global _state_num2str[5], _state_str2num[5] global _type_num2str[11], _type_str2num[11] @@ -832,6 +832,10 @@ probe begin(-1001) _prot_num2str[131] = "PIPE" _prot_num2str[132] = "SCTP" _prot_num2str[133] = "FC" + _prot_num2str[134] = "RSVP-E2E-IGNORE" + _prot_num2str[135] = "Mobility-Header" + _prot_num2str[136] = "UDPLite" + _prot_num2str[137] = "MPLS-IN-IP" foreach (num in _prot_num2str) _prot_str2num[_prot_num2str[num]] = num |