aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nbipx.c
AgeCommit message (Collapse)AuthorFilesLines
1999-07-07Created a new protocol tree implementation and a new display filterGilbert Ramirez1-11/+10
mechanism that is built into ethereal. Wiretap is now used to read all file formats. Libpcap is used only for capturing. svn path=/trunk/; revision=342
1999-05-10This small change lets me read SMBtrans packets that come over NBIPX.Gilbert Ramirez1-9/+24
svn path=/trunk/; revision=262
1999-03-23Removed all references to gtk objects from packet*.[ch] files. They nowGilbert Ramirez1-26/+19
reference the protocol tree with struct proto_tree and struct proto_item objects. That way, the packet decoding source code file can be used with non-gtk packet decoders, like a curses-based ethereal, e.g. I also re-arranged some of the information in packet.h to more appropriate places (like other packet-*.[ch] files). svn path=/trunk/; revision=223
1998-11-17* Added column formatting functionality.Gerald Combs1-7/+8
* Added check_col(), add_col_str() and add_col_fmt() to replace references to ft->win_info. * Added column prefs handling code. svn path=/trunk/; revision=97
1998-11-12A lengthy patch to add the wiretap library. Wiretap is not used by defaultGilbert Ramirez1-2/+1
because it is still in its infancy, but it can be compiled in optionally. The library exists in its own subdirectory ethereal/wiretap. This patch also edits all the packet-*.c files to remove the #include <pcap.h> line which is unnecessary in these files. In the ethereal code, file.c is the most heavily modified with #ifdef WITH_WIRETAP lines for the optional library. svn path=/trunk/; revision=82
1998-10-14I've started to figure out the difference between NetBIOS over IPX forGilbert Ramirez1-19/+71
Netware, and NetBIOS over IPX for WinNT (NWLink). svn path=/trunk/; revision=53
1998-10-14I rename the single dissect() function in packet-nbipx.c, and had packet-ipx.cGilbert Ramirez1-2/+2
call it under fewer circumstances. svn path=/trunk/; revision=52
1998-10-14Added preliminary support for NetBIOS Name Services over IPX and UDP. NoteGilbert Ramirez1-0/+140
that these are two very different implementations of NetBIOS name services and at the protocol level are not similar. I have put the UDP protocol in packet-nbns.c, since it will be a very big module. I have all of rfc 1002 to read and implement. I am planning on putting many different NetBIOS over IPX functions in packet-nbipx.c, however, since there is no RFC or published standard. I have to hack the protocol, and as such, I do not expect it to be as full-featured as the IP-world equivalents. svn path=/trunk/; revision=50