aboutsummaryrefslogtreecommitdiffstats
path: root/packet-snmp.c
AgeCommit message (Collapse)AuthorFilesLines
2001-12-10Move the pointer to the "column_info" structure in the "frame_data"guy1-23/+23
structure to the "packet_info" structure; only stuff that's permanently stored with each frame should be in the "frame_data" structure, and the "column_info" structure is not guaranteed to hold the column values for that frame at all times - it was only in the "frame_data" structure so that it could be passed to dissectors, and, as all dissectors are now passed a pointer to a "packet_info" structure, it could just as well be put in the "packet_info" structure. That saves memory, by shrinking the "frame_data" structure (there's one of those per frame), and also lets us clean up the code a bit. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4370 f5534014-38df-0310-8fa8-9805f1628bb7
2001-12-03Make "dissector_add()", "dissector_delete()", and "dissector_change()"guy1-9/+10
take a dissector handle as an argument, rather than a pointer to a dissector function and a protocol ID. Associate dissector handles with dissector table entries. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4308 f5534014-38df-0310-8fa8-9805f1628bb7
2001-11-27Change "conversation_set_dissector()" to take a dissector handle, ratherguy1-11/+4
than a pointer to a dissector function, as an argument. This means that the conversation dissector is called through "call_dissector()", so the dissector itself doesn't have to worry about checking whether the protocol is enabled or setting "pinfo->current_proto", so get rid of the code that does that in conversation dissectors. Also, make the conversation dissectors static. Get rid of some direct calls to dissectors; replace them with calls through handles, and, again, get rid of code to check whether a protocol is enabled and set "pinfo->current_proto" where that code isn't needed. Make those dissectors static if they aren't already static. Add a routine "create_dissector_handle()" to create a dissector handle without registering it by name, if the dissector isn't used outside the module in which it's defined. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4281 f5534014-38df-0310-8fa8-9805f1628bb7
2001-11-26Switched from using CHECK_DISPLAY_AS_DATA to using CHECK_DISPLAY_AS_Xhagbard1-2/+2
which also takes a handle as an argument and thus doesn't call dissect_data directly. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4270 f5534014-38df-0310-8fa8-9805f1628bb7
2001-11-26Moved from using dissect_data() to using call_dissector()hagbard1-3/+6
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4269 f5534014-38df-0310-8fa8-9805f1628bb7
2001-09-03Instead of having a single datum attached to a conversation, have a listguy1-3/+2
of protocol-id-plus-datum pairs, so that multiple protocols can attach information to the same conversation. Dissectors that attach information to a conversation should not assume that if they find a conversation it has one of its data attached to it; the conversation might've been created by another dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3901 f5534014-38df-0310-8fa8-9805f1628bb7
2001-09-03Squelch some compiler warnings.guy1-3/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3899 f5534014-38df-0310-8fa8-9805f1628bb7
2001-06-18From Joerg Mayer: explicitly fill in all members of aguy1-5/+5
"header_field_info" structure, including the ones that are later set by the routines to register fields. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3561 f5534014-38df-0310-8fa8-9805f1628bb7
2001-06-10Rename the arguments and flags for the conversation routines, so as notguy1-11/+15
to imply that 1) conversations have source and destination addresses and ports - they don't (if they did, they'd be monologues, not conversations), they just have two address/port pairs for the two endpoints, with one or more of the address or port in the second pair possibly being wildcarded; 2) the first and second address or port argument to "find_conversation()" or "try_conversation_dissector()" have anything to do with the first or second address/port pair in a conversation - they don't, the two arguments to those routines are matched against *both* address/port pairs for a conversation; as otherwise people might think that they need to add flags to wildcard the first arguments "conversation_new()" or "find_conversation()" (they don't, they just have to pass the non-wildcarded address/port first and then pass the wildcarded one, even if that means passing the destination first and source second). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3537 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-23Get rid of END_OF_FRAME references in tvbuffified dissectors.guy1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3364 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-15Conversation dissectors are called through a mechanism that doesn'tguy1-1/+10
check for disabled protocols or set "pinfo->current_proto", so they have to do that for themselves. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3306 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-15Fix up a pile of NullTVB uses that were left in the previous checkin.guy1-32/+32
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3304 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-15Tvbuffify the ASN.1 code and the Kerberos, LDAP, and SNMP dissectors.guy1-197/+186
Clean up some problems that revealed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3301 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-07At least with UCD SNMP 4.1.2, you can safely pass to "sprint_value()" aguy1-2/+2
variable with a null pointer-to-value and a zero length, so we don't need to protect the assignment to "variable.val.string" with "SAFE_STRING()" - and doing so causes complaints from the compiler about assigning a pointer to a "const gchar" to the non-const pointer "variable.val.string". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3267 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-07Don't blow up if "asn1_string_value_decode()" supplies a null pointer asguy1-5/+15
the string because the string value is zero-length. Don't try to treat an agent address in a V1 trap as an IP address if it's not 4 bytes long. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3265 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-06In "dissect_snmp_parse_error()" and "dissect_snmp_error()", put an errorguy1-76/+84
indication into the protocol tree as well as the summary line, so people don't get confused if, say, doing "tethereal -V". Pass those routines the subtree for the packet, rather than the top-level tree, so that the error indication and the item for the rest of the packet show up there rather than at the top level. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3264 f5534014-38df-0310-8fa8-9805f1628bb7
2001-02-27Do a better job of #ifdef'ing out 3 variables in the case of non-UCD-SNMPgram1-2/+2
and linux. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3081 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-30Work around a CMU SNMP bug wherein "sprint_value()" dumps core if thereguy1-47/+88
are no entries in any of the MIBs for any of the components of the variable's OID. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2961 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-30SNMPv2u support.guy1-2/+148
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2957 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-09Add an additional "protocol index" argument to "{old_}dissector_add()",guy1-7/+13
"{old_}heur_dissector_add()", "{old_}conv_dissector_add()", and "register_dissector()", so that an entry in those tables has associated with it the protocol index of the protocol the dissector handles (or -1, if there is no protocol index for it). This is for future use in a number of places. (Arguably, "proto_register_protocol()" should take a dissector pointer as an argument, but 1) it'd have to handle both regular and heuristic dissectors; 2) making it take either a "dissector_t" or a union of that and a "heur_dissector_t" introduces some painful header-file interdependencies so I'm punting on that for now. As with other Ethereal internal APIs, these APIs are subject to change in the future, at least until Ethereal 1.0 comes out....) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2849 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-03Ensure that all value_string arrays end in {0, NULL}. Dissectors got awaygram1-2/+3
with not terminating their arrays because they knew the limits of the value used to look up strings in the value_string array, but the dfilter_expr_dlg does not know these limits and must rely on the terminating {0, NULL} record. Also, in SNA fixed a bug in which a field should have been defined as FT_UINT8 but was defined as FT_BOOLEAN. In WTP, fixed a value string which had duplicate keys. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2817 f5534014-38df-0310-8fa8-9805f1628bb7
2001-01-03Have "proto_register_protocol()" build a list of data structures forguy1-3/+5
protocols, in addition to adding structures to the list of filterable fields. Give it an extra argument that specifies a "short name" for the protocol, for use in such places as pinfo->current_proto; the dialog box for constructing filters; the preferences tab for the protocol; and so on (although we're not yet using it in all those places). Make the preference name that appears in the preferences file and the command line for the DIAMETER protocol "diameter", not "Diameter"; the convention is that the name in question be all-lower-case. Make some routines and variables that aren't exported static. Update a comment in the ICP dissector to make it clear that the dissector won't see fragments other than the first fragment of a fragmented datagram. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2810 f5534014-38df-0310-8fa8-9805f1628bb7
2000-12-24Rename "asn1_octet_string_value_decode()" toguy1-3/+3
"asn1_string_value_decode()", as it can be used for various character string types as well. Turn "asn1_octet_string_decode()" into "asn1_string_decode()", which takes an additional argument giving the tag expected for the string in question, and make "asn1_octet_string_decode()" a wrapper around it. Clean up the ASN.1 dissection in the Kerberos dissector, making more use of the code in "asn1.c", wrapping more operations up in macros, and doing some more type checking. Use "REP" rather than "RESP" in names and strings; "REP" is what the Kerberos spec uses. Make the routines in the Kerberos dissector not used outside that dissector static. Fix some problems with the dissection of strings in the Kerberos dissector (it was extracting the data from the wrong place in the packet). In Kerberos V5, the "kvno" item in the EncryptedData type is optional; treat it as such. Treat integers as unsigned in the Kerberos dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2777 f5534014-38df-0310-8fa8-9805f1628bb7
2000-11-19For each column, have both a buffer into which strings for that columnguy1-3/+3
can be put, and a pointer to the string for the column, which might or might not point to that buffer. Add a routine "col_set_str()", which sets the string for the column to the string passed to it as an argument; it should only be handed a static string (a string constant would be ideal). It doesn't do any copying, so it's faster than "col_add_str()". Make the routines that append to columns check whether the pointer to the string for the column points to the buffer for the column and, if not, copy the string for the column to the buffer for the column so that you can append to it (so you can use "col_set_str()" and then use "col_append_str()" or "col_append_fstr()"). Convert a bunch of "col_add_str()" calls that take a string constant as an argument to "col_set_str()" calls. Convert some "col_add_fstr()" calls that take a string constant as the only argument - i.e., the format string doesn't have any "%" slots into which to put strings for subsequent arguments to "col_set_str()" calls (those calls are just like "col_add_str()" calls). Replace an END_OF_FRAME reference in a tvbuffified dissector with a "tvb_length(tvb)" call. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2670 f5534014-38df-0310-8fa8-9805f1628bb7
2000-11-13Move "bytes_to_str()" to "strutil.c" from "packet.c" - it's just aguy1-1/+2
string formatter, like "format_text()", and, as "tvbuff.c" now calls it (*vide infra*), we don't want to have to make "tvbuff.c" drag "packet.h" in just to declare "bytes_to_str()". It's now declared in "strutil.h", so include it in modules that use "bytes_to_str()" and weren't already including it. Add a "tvb_bytes_to_str()" wrapper that calls "tvb_get_ptr()" to get a pointer to a chunk of N bytes at a given offset in a tvbuff and then hands that chunk to "bytes_to_str()". Convert the code that was doing that to use "tvb_bytes_to_str()" instead (which caught what I suspect is a bug in the Q.2931 dissector, where it was handing an offset of 0 to "tvb_get_ptr()" - a cut-and-pasteo, I think). Tvbuffify the ARP dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2634 f5534014-38df-0310-8fa8-9805f1628bb7
2000-10-21Don't require that all SNMP packets go to or from the SNMP port - theguy1-1/+30
SNMP request would, but an SNMP reply can come back from another port. Instead, when an SNMP request is seen, create a conversation with a wildcard port, if one doesn't already exist, and make its dissector the SNMP dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2526 f5534014-38df-0310-8fa8-9805f1628bb7
2000-09-19Move the dlclose() of libsnmp_handle into the libsnmp_handle != NULLgram1-2/+2
block. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2446 f5534014-38df-0310-8fa8-9805f1628bb7
2000-09-17Close the handle for the SNMP library after we're done with it - sharedguy1-1/+2
objects are reference-counted so that won't make it disappear if Ethereal is also linked with it as a shared SNMP library. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2443 f5534014-38df-0310-8fa8-9805f1628bb7
2000-09-08Load "libsnmp.so.0", not "libsnmp.so":guy1-8/+27
on the systems that have the problem we're working around, the SNMP shared library is "libsnmp.so.0"; on those systems, there's also no "libsnmp.so" unless the user has installed the UCD SNMP development package or has made a symlink from "libsnmp.so" to "libsnmp.so.0" by hand, and we don't want to force users to do that (some of them may be sufficiently new to UNIX that they don't know how to do that); the run-time linker, if told to load "libsnmp.so", won't necessarily realize that it's the same object as "libsnmp.so.0", and may load it again rather than using the already-loaded object, which might not be a good idea. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2398 f5534014-38df-0310-8fa8-9805f1628bb7
2000-08-13Add the "Edit:Protocols..." feature which currently only implementsdeniel1-1/+3
the following: It is now possible to enable/disable a particular protocol decoding (i.e. the protocol dissector is void or not). When a protocol is disabled, it is displayed as Data and of course, all linked sub-protocols are disabled as well. Disabling a protocol could be interesting: - in case of buggy dissectors - in case of wrong heuristics - for performance reasons - to decode the data as another protocol (TODO) Currently (if I am not wrong), all dissectors but NFS can be disabled (and dissectors that do not register protocols :-) I do not like the way the RPC sub-dissectors are disabled (in the sub-dissectors) since this could be done in the RPC dissector itself, knowing the sub-protocol hfinfo entry (this is why, I've not modified the NFS one yet). Two functions are added in proto.c : gboolean proto_is_protocol_enabled(int n); void proto_set_decoding(int n, gboolean enabled); and two MACROs which can be used in dissectors: OLD_CHECK_DISPLAY_AS_DATA(index, pd, offset, fd, tree) CHECK_DISPLAY_AS_DATA(index, tvb, pinfo, tree) See also the XXX in proto_dlg.c and proto.c around the new functions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2267 f5534014-38df-0310-8fa8-9805f1628bb7
2000-08-07Allow either old-style (pre-tvbuff) or new-style (tvbuffified)guy1-9/+9
dissectors to be registered as dissectors for particular ports, registered as heuristic dissectors, and registered as dissectors for conversations, and have routines to be used both by old-style and new-style dissectors to call registered dissectors. Have the code that calls those dissectors translate the arguments as necessary. (For conversation dissectors, replace "find_conversation_dissector()", which just returns a pointer to the dissector, with "old_try_conversation_dissector()" and "try_conversation_dissector()", which actually call the dissector, so that there's a single place at which we can do that translation. Also make "dissector_lookup()" static and, instead of calling it and, if it returns a non-null pointer, calling that dissector, just use "old_dissector_try_port()" or "dissector_try_port()", for the same reason.) This allows some dissectors that took old-style arguments and immediately translated them to new-style arguments to just take new-style arguments; make them do so. It also allows some new-style dissectors not to have to translate arguments before calling routines to look up and call dissectors; make them not do so. Get rid of checks for too-short frames in new-style dissectors - the tvbuff code does those checks for you. Give the routines to register old-style dissectors, and to call dissectors from old-style dissectors, names beginning with "old_", with the routines for new-style dissectors not having the "old_". Update the dissectors that use those routines appropriately. Rename "dissect_data()" to "old_dissect_data()", and "dissect_data_tvb()" to "dissect_data()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2218 f5534014-38df-0310-8fa8-9805f1628bb7
2000-07-25Use the right length when adding the "agent address" entry to the treeguy1-3/+2
for an SNMP trap PDU. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2158 f5534014-38df-0310-8fa8-9805f1628bb7
2000-07-25Fix a comment.guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2157 f5534014-38df-0310-8fa8-9805f1628bb7
2000-07-08The security model values 1 and 2 ("reserved for SNMPv1" and "reservedguy1-19/+1
for SNMPv2") in SNMPv3 packets shouldn't cause the security parameters to be interpreted as a character string - those values are apparently not supposed to show up in packets - so we handle those values in the default case, with the security parameters treated as opaque data. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2124 f5534014-38df-0310-8fa8-9805f1628bb7
2000-07-02"asn1_octet_string_decode()" sets the pointer to the raw octets to NULLguy1-7/+19
if the octet string is zero-length; if the octets are to be interpreted as a character string, we have to check for a null pointer and replace it with a pointer to a null string. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2102 f5534014-38df-0310-8fa8-9805f1628bb7
2000-06-29Make "format_oid()" allocate a buffer that's big enough, format the OIDguy1-2/+2
string into it, and return a pointer to that buffer, rather than being passed a buffer. This gets rid of some additional fixed-length string buffers (and makes it more closely resemble the "format_oid()" in the libsmi-based "packet-snmp.c" under development). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2099 f5534014-38df-0310-8fa8-9805f1628bb7
2000-06-28Make "format_oid()" allocate a buffer that's big enough, format the OIDguy1-16/+24
string into it, and return a pointer to that buffer, rather than being passed a buffer. This gets rid of some additional fixed-length string buffers (and makes it more closely resemble the "format_oid()" in the libsmi-based "packet-snmp.c" under development). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2098 f5534014-38df-0310-8fa8-9805f1628bb7
2000-06-26Rename "format_value()" to "format_var()", and have it dynamicallyguy1-9/+60
allocate the buffer into which it formats the variable value, and return that value. This 1) makes it more closely resemble the formatting routine in the libsmi-based "packet-snmp.c" under development; 2) makes it less likely to overrun the buffer (we can't be certain how long the string "sprint_value()" generates will be, but we can make a reasonable guess as to the maximum size based on the type and size of the object we're formatting). When *not* using "-lsnmp", dynamically allocate the buffers into which we format octet strings and OID values, based on the size of the object we're formatting, so that we don't overrun the buffer. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2091 f5534014-38df-0310-8fa8-9805f1628bb7
2000-06-25Make the string buffers into which stuff is formatted larger, to handle,guy1-2/+2
for example, larger octet string values. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2089 f5534014-38df-0310-8fa8-9805f1628bb7
2000-06-17Instead of calling "snmp_set_full_objid()" to cause OIDs to be displayedguy1-13/+105
symbolically as full sequences, call "snmp_set_suffix_only(2)" to cause them to be displayed symbolically as a module name and a name within that module, as that might make it easier to find the RFC or whatever that describes the object in question. Don't just statically call it, though, on Linux, as that causes binaries built on Red Hat releases prior to 6.2 to fail to run on 6.2, due to the UCD SNMP 4.1.1 library used in RH 6.2 not being 100% binary-compatible with the UCD SNMP libraries used in those prior releases. Instead, on Linux, try to "dlopen()" the "libsnmp.so" library and, if that succeeds, try to find "snmp_set_suffix_only()" in that library - if that succeeds, call it, otherwise try to find "ds_set_int()" in that library and, if *that* succeeds, call it with the arguments that, in UCD SNMP 4.1.1, the "snmp_set_suffix_only()" macro passes to it. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2077 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-31Add routines for adding items to a protocol tree that take arguments ofguy1-6/+6
a particular type, rather than taking a varargs list, along the lines of the "proto_tree_add_XXX_format()" routines. Replace most calls to "proto_tree_add_item()" and "proto_tree_add_item_hidden()" with calls to those routines. Rename "proto_tree_add_item()" and "proto_tree_add_item_hidden()" to "proto_tree_add_item_old()" and "proto_tree_add_item_hidden_old()", and add new "proto_tree_add_item()" and "proto_tree_add_item_hidden()" routines that don't take the item to be added as an argument - instead, they fetch the argument from the packet whose tvbuff was handed to them, from the offset handed to them. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2031 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-30Give the IPX dissector dissector hash tables for the IPX type and socketguy1-2/+5
number, and have the protocols encapsulated inside IPX register themselves with that table. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2028 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-24Update a comment to reflect that only UCD SNMP 4.1.1 hasguy1-3/+3
"snmp_set_full_objid()" as a macro rather than a function - 4.1.2 has it as a function again. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1995 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-19The only packets that look like SMUX packets *are* SMUX packets (unlikeguy1-4/+4
SNMP, where we let the ATM code tell the SNMP dissector to call it "ILMI"), so don't pass a protocol name string into "dissect_smux_pdu()", just have "dissect_smux_pdu()" call it "SMUX". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1983 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-15Fix a botch that kept it from compiling if you didn't have an SNMPguy1-2/+2
library. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1964 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-15SMUX and SNMP V3 support from Jochen Friedrich.guy1-116/+823
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1960 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-11Add tvbuff class.gram1-30/+30
Add exceptions routines. Convert proto_tree_add_*() routines to require tvbuff_t* argument. Convert all dissectors to pass NULL argument ("NullTVB" macro == NULL) as the tvbuff_t* argument to proto_tree_add_*() routines. dissect_packet() creates a tvbuff_t, wraps the next dissect call in a TRY block, will print "Short Frame" on the proto_tree if a BoundsError exception is caught. The FDDI dissector is converted to use tvbuff's. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1939 f5534014-38df-0310-8fa8-9805f1628bb7
2000-05-09Fix from Ron Flory to suppress a warning GCC issues on at least someguy1-3/+3
platforms. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1930 f5534014-38df-0310-8fa8-9805f1628bb7
2000-04-13Change the sub-dissector handoff registration routines so that thegram1-1/+3
sub-dissector table is not stored in the header_field_info struct, but in a separate namespace. Dissector tables are now registered by name and not by field ID. For example: udp_dissector_table = register_dissector_table("udp.port"); Because of this different namespace, dissector tables can have names that are not field names. This is useful for ethertype, since multiple fields are "ethertypes". packet-ethertype.c replaces ethertype.c (the name was changed so that it would be named in the same fashion as all the filenames passed to make-reg-dotc) Although it registers no protocol or field, it registers one dissector table: ethertype_dissector_table = register_dissector_table("ethertype"); All protocols that can be called because of an ethertype field now register that fact with dissector_add() calls. In this way, one dissector_table services all ethertype fields (hf_eth_type, hf_llc_type, hf_null_etype, hf_vlan_etype) Furthermore, the code allows for names of protocols to exist in the etype_vals, yet a dissector for that protocol doesn't exist. The name of the dissector is printed in COL_INFO. You're welcome, Richard. :-) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1848 f5534014-38df-0310-8fa8-9805f1628bb7
2000-04-08Move calls to "dissector_add()" out of the register routines for TCP andguy1-1/+11
UDP and into the handoff registration routines for the protocols in question. Make the dissectors for those protocols static if they're not called outside the dissector's source file. Get rid of header files if all they did was declare dissectors that are now static; remove declarations of now-static dissectors from header files that do more than just declare the dissector. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1823 f5534014-38df-0310-8fa8-9805f1628bb7