aboutsummaryrefslogtreecommitdiffstats
path: root/epan/osi-utils.c
AgeCommit message (Collapse)AuthorFilesLines
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2006-03-07Remove dead code. Due the to if() test that checks for specificgram1-4/+5
values of 'length', the code in question can never run. This fixes Coverity bug ID #1. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17514 f5534014-38df-0310-8fa8-9805f1628bb7
2005-09-12The previous checkin for packet-isup.c was accidentally checked in alongguy1-0/+5
with some unrelated changes; it got rid of some calls to get IPv4/IPv6 addresses and add them to the protocol tree, replacing them with proto_tree_add_item() calls, and fixed up the length of one protocol tree item. Note that we have (at least) three count 'em three different routines for dissecting/displaying NSAPs (there might be more - I might have missed some), and suggest that we might want to reduce that to one. Update the URL for ICP values for IPv{4,6} addresses inside NSAPs. Fix the offset in the call to add the IPv6 address part of an NSAP containing such an address, and the length in the call adding the DSP for an NSAP containing an IPv4 address. Fix up indentation a bit. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15766 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-20The order in which arguments to a function are evaluated isn't definedguy1-2/+4
by C. Do decrements of arguments before passing them to a function. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15463 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-20removal of even more sprintfsahlberg1-34/+34
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15457 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-17replace some more silly rotating buffers with ep_alloc() callssahlberg1-6/+4
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15386 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Set the svn:eol-style property on all text files to "native", so thatguy1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11400 f5534014-38df-0310-8fa8-9805f1628bb7
2003-11-20From Hannes Gredler: "print_system_id()" should callguy1-2/+2
"print_system_id_buf()", not "print_nsap_net_buf()". (What idiot made *that* mistake? :-)) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9046 f5534014-38df-0310-8fa8-9805f1628bb7
2003-09-10Void functions don't return values.guy1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8442 f5534014-38df-0310-8fa8-9805f1628bb7
2003-08-26Create an "address_to_str_buf()" routine, called by "address_to_str()",guy1-64/+88
which fills in a caller-supplied buffer. Create "_buf()" versions of various "to_str" routines for various address types, and create a routine to map SNA FIDs to strings, and use them to finish up "address_to_str_buf()". Get rid of the declaration of "sna_fid_type_4_addr_to_str()" in "packet-sna.h", as that routine has been swallowed up in "sna_fid_to_str()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8260 f5534014-38df-0310-8fa8-9805f1628bb7
2003-01-26Update my email address in various places since my old one no longer worksdeniel1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7003 f5534014-38df-0310-8fa8-9805f1628bb7
2002-09-02From Hannes Gredler:guy1-3/+3
open up a new subtree for dissecting the lsp-entry TLV; remove the isis_lsp_decode_lsp_id() routine, as the same functionality is better served using print_system_id(); fix a small bug in print_system_id(). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6169 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-29From Hannes Gredler: make the IS-IS dissector more verbose in the INFOguy1-4/+10
field - specifically for IIHs the System-ID of the Hello; LSPs the LSP-ID, Sequence #, Lifetime; CSNPs the LAN-ID, Start LSP-ID, End LSP-ID. and change the display of some IDs. Clean up white space. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6128 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-28Removed trailing whitespaces from .h and .c files using thejmayer1-24/+24
winapi_cleanup tool written by Patrik Stridvall for the wine project. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6116 f5534014-38df-0310-8fa8-9805f1628bb7
2002-08-02Replace the types from sys/types.h and netinet/in.h by their glib.hjmayer1-5/+1
equivalents for the epan/ directory but leave winsock2.h in inet_pton.c and inet_ntop.c for now (can't estimate the consequences). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5928 f5534014-38df-0310-8fa8-9805f1628bb7
2002-07-17From Joerg Mayer:guy1-5/+1
dftest.c: Remove #if-0-ed includes packet-ieee80211.c, packet-wtls.c, packet-afp.c, packet-wsp.c, packet-wtp.c, ethereal_gen.py: Remove redundant include varargs (already in snprintf.h, and required only for snprintf.h) Remove unused include of snprintf.h from files not using "snprintf()". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5889 f5534014-38df-0310-8fa8-9805f1628bb7
2002-06-28From Hannes Gredler: fix display of OSI system IDs to use a dot ratherguy1-3/+3
than a dash before the PSN byte; the dash is typically only used to demarcate the fragment. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5785 f5534014-38df-0310-8fa8-9805f1628bb7
2001-05-15Stop depending on the order in which operations are performed byguy1-7/+11
generated code, as per Chris Foulds' note. Also, when constructing the system ID or area string, always append the four-octet groups, rather than overwriting them, as we had been doing. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3414 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-16Assorted ISIS enhancements from Hannes Gredler.guy1-2/+7
When dissecting the ISIS NLPID CLV, use the "nlpid_vals" array to convert NLPID values to protocol names. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3308 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-02Don't use "u_int" and "u_char", as they're not defined in <sys/types.h>guy1-6/+6
on Windows, so we'd have to drag in <winsock.h> to define them. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3246 f5534014-38df-0310-8fa8-9805f1628bb7
2001-04-01Moved some definitions and functions from packet-osi.{c,h} tohagbard1-0/+172
epan/osi-utils.{c,h} to bring all of the epan dependencies into epan. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3226 f5534014-38df-0310-8fa8-9805f1628bb7