diff options
author | Nathan Neulinger <nneul@umr.edu> | 2000-11-02 16:59:29 +0000 |
---|---|---|
committer | Nathan Neulinger <nneul@umr.edu> | 2000-11-02 16:59:29 +0000 |
commit | 7130cde9ad9eeb89f1a0435eafa904ef066846e2 (patch) | |
tree | e1738b46e04eb9d384fd68ac69ed914b177b0897 /packet-afs.c | |
parent | 8fb7675c5959269f9b75108bd70c56737adbbb47 (diff) | |
download | wireshark-7130cde9ad9eeb89f1a0435eafa904ef066846e2.tar.gz wireshark-7130cde9ad9eeb89f1a0435eafa904ef066846e2.tar.bz2 wireshark-7130cde9ad9eeb89f1a0435eafa904ef066846e2.zip |
more cleanup of opcodes
svn path=/trunk/; revision=2550
Diffstat (limited to 'packet-afs.c')
-rw-r--r-- | packet-afs.c | 63 |
1 files changed, 34 insertions, 29 deletions
diff --git a/packet-afs.c b/packet-afs.c index 4c8cbdd0a0..2307517f21 100644 --- a/packet-afs.c +++ b/packet-afs.c @@ -6,7 +6,7 @@ * Portions based on information retrieved from the RX definitions * in Arla, the free AFS client at http://www.stacken.kth.se/project/arla/ * - * $Id: packet-afs.c,v 1.16 2000/11/02 16:15:53 nneul Exp $ + * $Id: packet-afs.c,v 1.17 2000/11/02 16:59:29 nneul Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -65,24 +65,24 @@ static const value_string fs_req[] = { { 140, "link" }, { 141, "makedir" }, { 142, "rmdir" }, - { 143, "oldsetlock" }, - { 144, "oldextlock" }, - { 145, "oldrellock" }, + { 143, "old-set-lock" }, + { 144, "old-extend-lock" }, + { 145, "old-release-lock" }, { 146, "get-stats" }, - { 147, "give-cbs" }, - { 148, "get-vlinfo" }, - { 149, "get-vlstats" }, - { 150, "set-vlstats" }, - { 151, "get-rootvl" }, + { 147, "give-up-callbacks" }, + { 148, "get-volume-info" }, + { 149, "get-volume-status" }, + { 150, "set-volume-status" }, + { 151, "get-root-volume" }, { 152, "check-token" }, { 153, "get-time" }, - { 154, "nget-vlinfo" }, - { 155, "bulk-stat" }, - { 156, "setlock" }, - { 157, "extlock" }, - { 158, "rellock" }, - { 159, "xstat-ver" }, - { 160, "get-xstat" }, + { 154, "nget-volume-info" }, + { 155, "bulk-status" }, + { 156, "set-lock" }, + { 157, "extend-lock" }, + { 158, "release-lock" }, + { 159, "xstats-version" }, + { 160, "get-xstats" }, { 161, "dfs-lookup" }, { 162, "dfs-flushcps" }, { 163, "dfs-symlink" }, @@ -91,16 +91,20 @@ static const value_string fs_req[] = { static const value_string cb_req[] = { { 204, "callback" }, - { 205, "initcb" }, + { 205, "init-callback-state" }, { 206, "probe" }, - { 207, "getlock" }, - { 208, "getce" }, - { 209, "xstatver" }, - { 210, "getxstat" }, - { 211, "initcb2" }, - { 212, "whoareyou" }, - { 213, "initcb3" }, + { 207, "get-lock" }, + { 208, "get-ce" }, + { 209, "xstats-version" }, + { 210, "get-xstats" }, + { 211, "init-callback-state2" }, + { 212, "who-are-you" }, + { 213, "init-callback-state3" }, { 214, "probeuuid" }, + { 215, "get-server-prefs" }, + { 216, "get-cellservdb" }, + { 217, "get-local-cell" }, + { 218, "get-cache-config" }, { 0, NULL }, }; @@ -138,10 +142,10 @@ static const value_string vldb_req[] = { { 505, "get-new-volume-id" }, { 506, "replace-entry" }, { 507, "update-entry" }, - { 508, "setlock" }, - { 509, "releaselock" }, + { 508, "set-lock" }, + { 509, "release-lock" }, { 510, "list-entry" }, - { 511, "list-attrib" }, + { 511, "list-attributes" }, { 512, "linked-list" }, { 513, "get-stats" }, { 514, "probe" }, @@ -164,6 +168,7 @@ static const value_string vldb_req[] = { { 531, "linked-list-u" }, { 532, "regaddr" }, { 533, "get-addrs-u" }, + { 534, "list-attrib-n2" }, { 0, NULL }, }; @@ -248,14 +253,14 @@ static const value_string bos_req[] = { { 102, "set-noauth-flag" }, { 103, "re-bozo" }, { 104, "restart" }, - { 105, "start-bozo-install" }, + { 105, "install" }, { 106, "uninstall" }, { 107, "get-dates" }, { 108, "exec" }, { 109, "prune" }, { 110, "set-restart-time" }, { 111, "get-restart-time" }, - { 112, "start-bozo-log" }, + { 112, "get-log" }, { 113, "wait-all" }, { 114, "get-instance-strings" }, { 0, NULL }, |