aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isis-lsp.c
Commit message (Collapse)AuthorAgeFilesLines
* From Hannes Gredler:Guy Harris2001-12-261-2/+2
| | | | | | | | | | | System IDs in IS neighbor CLVs in Hello PDUs are assumed to be MAC addresses, so use "get_ether_name()" on them to try to resolve them to host names. Properly label IS type values of ISIS_LSP_TYPE_LEVEL_2 as being "Level 1 and Level 2 IS". svn path=/trunk/; revision=4451
* Put the Hello, LSP, and {C,P}SNP ISIS stuff into the ISIS protocol,Guy Harris2001-12-201-32/+19
| | | | | | rather than having them each have their own protocol. svn path=/trunk/; revision=4432
* Moved from using dissect_data() to using call_dissector()Ed Warnicke2001-11-261-2/+9
| | | | svn path=/trunk/; revision=4269
* Tvbuffified ISIS dissector, from Ronnie Sahlberg.Guy Harris2001-07-021-375/+425
| | | | svn path=/trunk/; revision=3626
* Fix a typo, discovered whilst testing the tvbuffified ISIS dissectorGuy Harris2001-07-011-2/+2
| | | | | | | | (the tvbuffified version is correct here; I'll check this in for reference purposes, even though I plan to check in the tvbuffified version later). svn path=/trunk/; revision=3625
* More IS-IS updates.Guy Harris2001-06-231-19/+146
| | | | | | HELLO message support in RSVP. svn path=/trunk/; revision=3604
* From Joerg Mayer: explicitly fill in all members of aGuy Harris2001-06-181-8/+8
| | | | | | | "header_field_info" structure, including the ones that are later set by the routines to register fields. svn path=/trunk/; revision=3561
* Support for External Reachability TLVs, and assorted outputGuy Harris2001-06-181-18/+57
| | | | | | improvements, from Hannes Gredler. svn path=/trunk/; revision=3558
* More updates from Hannes Gredler.Guy Harris2001-06-071-25/+68
| | | | svn path=/trunk/; revision=3522
* Get rid of extra colons, and fix up the display of default metrics, fromGuy Harris2001-05-231-6/+13
| | | | | | Jean-Christian Pennetier. svn path=/trunk/; revision=3437
* Various ISIS improvements (ISIS IPv6 routing TLV dissection, ISISGuy Harris2001-05-141-2/+468
| | | | | | | traffic engineering TLV dissection, IS neighbor and IP reachability TLVs given their own subtree types), from Jean-Christian Pennetier. svn path=/trunk/; revision=3413
* Assorted ISIS enhancements from Hannes Gredler.Guy Harris2001-04-161-4/+58
| | | | | | | When dissecting the ISIS NLPID CLV, use the "nlpid_vals" array to convert NLPID values to protocol names. svn path=/trunk/; revision=3308
* OSI network layer over PPP support, fix to P2P ISIS processing, and ISISGuy Harris2001-04-081-1/+40
| | | | | | hostname TLV support, from Hannes Gredler. svn path=/trunk/; revision=3271
* Have "proto_register_protocol()" build a list of data structures forGuy Harris2001-01-031-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | 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. svn path=/trunk/; revision=2810
* Add the "Edit:Protocols..." feature which currently only implementsLaurent Deniel2000-08-131-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. svn path=/trunk/; revision=2267
* Make the "isis_hello.source_id" an FT_BYTES field rather than anGuy Harris2000-06-191-83/+118
| | | | | | | | | | | | | | | | FT_ETHER field; the ISIS spec doesn't say it's necessarily a 6-byte Ethernet address (and, if it's FT_BYTES, you can test it in a filter much the same way you test an Ethernet address). Make "isis_hello.lan_id" an FT_BYTES field rather than an FT_STRING field - it's an array of bytes, not a character string. Don't require that "system ID" fields be 6 octets; use the size value from the ISIS PDU header. (This means that PDUs containing "system ID" fields can't be described as C structures; dissect them by stepping the offset instead.) svn path=/trunk/; revision=2080
* Add routines for adding items to a protocol tree that take arguments ofGuy Harris2000-05-311-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. svn path=/trunk/; revision=2031
* Add tvbuff class.Gilbert Ramirez2000-05-111-16/+16
| | | | | | | | | | | | | | | 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. svn path=/trunk/; revision=1939
* Ralf Schneider's changes to enhance to OSI CLNP, CLTP, and ISIS supportGuy Harris2000-04-151-22/+12
| | | | | | and to add OSI ESIS support. svn path=/trunk/; revision=1865
* Change dfilter_init() to check for empty-string abbreviations and forGilbert Ramirez2000-03-201-2/+2
| | | | | | | duplicate abbreviations. All mods to packet-*.c files are fixes to remove those cases. svn path=/trunk/; revision=1733
* Fix a bunch of dissectors to use "pi.captured_len" rather thanGuy Harris2000-01-241-4/+4
| | | | | | | | | | "fd->cap_len" for the frame length - or to use macros such as "BYTES_ARE_IN_FRAME()", "IS_DATA_IN_FRAME()", and "END_OF_FRAME", which use "pi.captured_len" - so that they correctly handle frames where the actual data length of the packet is less than the size of the raw frame, e.g. with encapsulations such as ISL. svn path=/trunk/; revision=1530
* Merge in the final code to make Ethereal run on Win32, compiledGilbert Ramirez2000-01-151-3/+7
| | | | | | | | | | | | | | | | with MSVC 6.0 and 'nmake', the make tool that comes with MSVC. It compiles, links, and runs. It doesn't run correctly. There's a problem when reading files. I'm getting short reads. I'm not linking in zlib or libsnmp because it first needs to be debugged. I changed the plugin code to use gmodule instead of libltdl, but the Unix build still links ethereal against libltdl. I'll fix that tonight; sorry about leaving it in such a sad state, but I wanted to check in this code before I left work on a Friday night. Ethereal still works, but the building is less than optimal. svn path=/trunk/; revision=1479
* Stuart Stanley's ISIS dissection support.Guy Harris1999-12-151-0/+925
svn path=/trunk/; revision=1340