aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipx.c
AgeCommit message (Collapse)AuthorFilesLines
1999-05-10This small change lets me read SMBtrans packets that come over NBIPX.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=262
1999-03-23Removed all references to gtk objects from packet*.[ch] files. They nowGilbert Ramirez1-64/+64
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
1999-03-20Re-wrote the NCP module in accordance with how NCP is really organized.Gilbert Ramirez1-28/+45
NCP is still not decoded much, but the infrastructure for doing so is now in place, including a hashtable to record the NCP type of each request so that we now how to parse the response. svn path=/trunk/; revision=215
1999-03-05IPX addresses in the Destination/Source fields of the "column" part of the GUIGilbert Ramirez1-4/+31
are now written in NNNNNNNN.hhhhhhhhhhhh form, N=IPX network, h=hwaddr. svn path=/trunk/; revision=211
1999-03-05dissect_sap() no longer assumes that packets are the proper length. ItGilbert Ramirez1-2/+2
checks for enough bytes for a SAP record before dissecting the bytes. svn path=/trunk/; revision=210
1998-12-31Be smarter about IPX port numbers and which function to call.Gilbert Ramirez1-4/+10
svn path=/trunk/; revision=143
1998-11-17* Added column formatting functionality.Gerald Combs1-22/+24
* 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-6/+2
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-4/+9
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-3/+3
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-10/+10
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
1998-10-02Added more SAP types, from the ncpfs source.Gilbert Ramirez1-5/+18
svn path=/trunk/; revision=35
1998-09-27Merged in a _huge_ patch from Guy Harris. It adds a time stap column,Gerald Combs1-35/+18
generalizes the column printing code, adds a "frame" tree item to the tree view, and fixes a bunch of miscellaneous coding bugs. svn path=/trunk/; revision=31
1998-09-27I added the Server Down SAP packet after discovering its descriptionGilbert Ramirez1-4/+21
in a book today. svn path=/trunk/; revision=29
1998-09-24NetWare SAP added.Gilbert Ramirez1-7/+132
svn path=/trunk/; revision=24
1998-09-23Added conversion of IPX RIP ticks to milliseconds for response packets.Gilbert Ramirez1-7/+17
svn path=/trunk/; revision=23
1998-09-23I removed the ncp code from packet-ipx.c and created packet-ncp.c. Now thatGilbert Ramirez1-207/+83
I've started concentrating on the NetWare modules again, packet-ncp.c is going to start to grow. I also added IPX RIP to packet-ipx.c. Additionally, I added the END_OF_FRAME macro to packet.h, which is useful for many dissect() routines. (and I already modified packet-bootp.c and packet-data.c to use this macro) svn path=/trunk/; revision=22
1998-09-16Added ID tags to the beginning of each source file.Gerald Combs1-0/+2
svn path=/trunk/; revision=7
1998-09-16Initial revisionGerald Combs1-0/+492
svn path=/trunk/; revision=2