diff options
author | zhaolei <zhaolei> | 2007-10-03 01:56:25 +0000 |
---|---|---|
committer | zhaolei <zhaolei> | 2007-10-03 01:56:25 +0000 |
commit | 94b2b2e65ad2255dd09c4939921128d13d25615d (patch) | |
tree | d6e32ed26b7fcb4a4cb3e27ff7a3e75f0a28a6bb /tapset/socket.stp | |
parent | 4a6d3dfa0f3ce20f95c892818b9f1b617ddcd0cf (diff) | |
download | systemtap-steved-94b2b2e65ad2255dd09c4939921128d13d25615d.tar.gz systemtap-steved-94b2b2e65ad2255dd09c4939921128d13d25615d.tar.xz systemtap-steved-94b2b2e65ad2255dd09c4939921128d13d25615d.zip |
2007-10-03 Zhaolei <zhaolei@cn.fujitsu.com>
* aux_syscalls.stp(_sockopt_level_str): Add support for protocol
number 134~137.
* socket.stp (global define,begin): Ditto.
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 |