summaryrefslogtreecommitdiff
path: root/print-tipc.c
Commit message (Collapse)AuthorAgeFilesLines
* u_intN_t is dead, long live uintN_t.Guy Harris2014-04-231-34/+34
| | | | | | | | | And, as we require at least autoconf 2.61, and as autoconf 2.61 and later have AC_TYPE_UINTn_T and AC_TYPE_INTn_T macros, we use them to define the uintN_t and intN_t macros if the system doesn't define them for us. This lets us get rid of bitypes.h as well.
* print-tipc: variable 'prev_node' is reassigned the same valueFrancois-Xavier Le Bail2014-03-201-1/+0
|
* make use of NETDISSECT_REWORKEDDenis Ovsienko2014-03-151-1/+2
| | | | | Update the already converted decoders to define the macro and to include interface.h instead of netdissect.h. Fix incurred compile errors.
* refine some past NDO conversionsDenis Ovsienko2014-03-121-3/+0
| | | | Don't include unneeded headers and replace a few remaining printf's.
* don't include addrtoname.h needlesslyDenis Ovsienko2014-02-251-1/+0
|
* remove tcpdump's own CVS keywordsDenis Ovsienko2014-01-031-5/+0
| | | | | | Remove lots of $Header's and a few $Id's that all belong to the former CVS repository of tcpdump itself. These keywords have been frozen since the migration to git in late 2008.
* whitespace changesMichael Richardson2014-01-011-2/+2
|
* make consistent use of the "tstr" idiomDenis Ovsienko2013-12-261-4/+6
| | | | | | | | For each decoder that has more than one instance of truncation signaling and prints the same string in each instance make sure that the string is declared as "static const char tstr[]" right after the initial includes block. Where necessary, replace fputs(s, stdout) with equivalent printf("%s", s).
* Put the addresses early in the message format, and handle short messages.Guy Harris2012-02-291-61/+81
| | | | | | | | | Putting the addresses after "TIPC vX.Y" matches other protocols, such as IPv4/IPv6. Not all messages have full headers. Also, constify some parameters and variables.
* Print only one line in non-verbose mode.Guy Harris2012-02-281-33/+45
| | | | Also, don't print extra blank lines in verbose mode.
* TIPC support.ABHIMANYU2012-02-281-0/+360
Reviewed-and-much-modified-by: Guy Harris <guy@alum.mit.edu>