guy | 1 Mar 2006 01:11
Favicon

rev 17431: /trunk/: text2pcap.c

User: guy
Date: 2006/02/28 06:11 PM

Log:
 "help()" really just prints a usage message; it's not a full-blown help
 system.  Just call it "usage()".

 Also, it doesn't use the "progname" argument - it doesn't need to, it's
 text2pcap-specific, and it prefers to call it "Text2pcap" anyway (and,
 besides, argv[0] might well be a pathname).  Get rid of that argument.

 Fix some white space.

Directory: /trunk/
  Changes    Path           Action
  +27 -26    text2pcap.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17431&view=rev
guy | 1 Mar 2006 01:13
Favicon

rev 17432: /trunk/gtk/: flow_graph.c

User: guy
Date: 2006/02/28 06:13 PM

Log:
 The sequence and ack numbers in a TCP are guint32's, which means they
 should be printed with "%u", not "%lu" (especially on LP64 platforms).

 Fix up indentation.

Directory: /trunk/gtk/
  Changes    Path            Action
  +33 -33    flow_graph.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17432&view=rev
guy | 1 Mar 2006 01:14
Favicon

rev 17433: /trunk/epan/dissectors/: packet-smb2.c

User: guy
Date: 2006/02/28 06:14 PM

Log:
 Constify some items, and make one item static, so we don't initialize
 stack copies at run time.

Directory: /trunk/epan/dissectors/
  Changes    Path             Action
  +2 -2      packet-smb2.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17433&view=rev
guy | 1 Mar 2006 01:16
Favicon

rev 17434: /trunk/epan/dissectors/: packet-rnsap.c /trunk/asn1/rnsap/: packet-rnsap-template.c

User: guy
Date: 2006/02/28 06:16 PM

Log:
 Replace commenting-out of code with "#if 0"/#endif" - it's a bit safer
 (you don't have to worry about comments in #if 0'ed otu code), and it
 also fixes an unclosed comment (the commenting-out ended with /* rather
 than */).

 Fix up some indentation as well.

Directory: /trunk/epan/dissectors/
  Changes    Path              Action
  +12 -9     packet-rnsap.c    Modified

Directory: /trunk/asn1/rnsap/
  Changes    Path                       Action
  +9 -6      packet-rnsap-template.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17434&view=rev
guy | 1 Mar 2006 01:22
Favicon

rev 17435: /trunk/epan/dissectors/: packet-ipp.c

User: guy
Date: 2006/02/28 06:22 PM

Log:
 Use "tvb_format_string()" on strings extracted from the packet.

 Use "tvb_get_ephemeral_string()" to extract a counted string into an
 ep_allocated null-terminated buffer.

 Constify a variable that points to packet data.

Directory: /trunk/epan/dissectors/
  Changes    Path            Action
  +21 -32    packet-ipp.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17435&view=rev
guy | 1 Mar 2006 02:21
Favicon

rev 17436: /trunk/: tethereal.c

User: guy
Date: 2006/02/28 07:21 PM

Log:
 Reject attempts to use packet capture options when we're reading a saved
 capture file.

 We don't support saving live captures in any format other than libpcap
 format (and probably don't want to - we really want to avoid using
 Wiretap in that case, as it requires us to Wiretapify captured packets,
 which adds extra processing to the capture path); reject attempts to do
 that.

Directory: /trunk/
  Changes    Path           Action
  +78 -32    tethereal.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17436&view=rev
guy | 1 Mar 2006 02:46
Favicon

rev 17437: /trunk/: capture.c capture_info.c capture_info.h

User: guy
Date: 2006/02/28 07:46 PM

Log:
 Clean up indentation a bit.

 In "capture_input_new_file()", don't call the callbacks unless we
 succeed in opening the new file.  Have "capture_info_new_file()" return
 a success/failure indication.

 Improve the message logged when we fail to open the new file if we're
 only opening it for the quick packet counts.  We really should put up an
 alert box and give up on the capture at that point.

Directory: /trunk/
  Changes    Path              Action
  +8 -5      capture.c         Modified
  +109 -4    capture_info.c    Modified
  +1 -1      capture_info.h    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17437&view=rev
guy | 1 Mar 2006 02:54
Favicon

rev 17438: /trunk/: capture_opts.c

User: guy
Date: 2006/02/28 07:54 PM

Log:
 A "-b" argument must have a : in it, as it has to specify a criterion
 type and value, separated by a :.

Directory: /trunk/
  Changes    Path              Action
  +1 -1      capture_opts.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17438&view=rev
jake | 1 Mar 2006 18:25
Favicon

rev 17439: /trunk/epan/dissectors/: packet-sebek.c

User: jake
Date: 2006/03/01 11:25 AM

Log:
 From Camilo Viecco:
 I just make some modifications for the current Sebek dissector so It can
 understand both sebek V2 and V3 packets.

Directory: /trunk/epan/dissectors/
  Changes    Path              Action
  +193 -37   packet-sebek.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17439&view=rev
gerald | 1 Mar 2006 22:31
Favicon

rev 17440: /trunk/plugins/lua/: Makefile.nmake elua_tree.c /trunk/tools/: win32-setup.sh /trunk/: Makefile.nmake config.h.win32 config.nmake version_info.c

User: gerald
Date: 2006/03/01 03:31 PM

Log:
 Add Lua support by default for Win32.  Fix some compilation problems.
 Add Lua information to the version paragraph.

Directory: /trunk/plugins/lua/
  Changes    Path              Action
  +19 -15    Makefile.nmake    Modified
  +1 -1      elua_tree.c       Modified

Directory: /trunk/tools/
  Changes    Path              Action
  +1 -1      win32-setup.sh    Modified

Directory: /trunk/
  Changes    Path              Action
  +8 -2      Makefile.nmake    Modified
  +4 -1      config.h.win32    Modified
  +2 -2      config.nmake      Modified
  +13 -0     version_info.c    Modified

http://anonsvn.ethereal.com/viewcvs/viewcvs.py?rev=17440&view=rev

Gmane