aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
AgeCommit message (Collapse)AuthorFilesLines
2001-09-13TCP desegmentation support, and changes to the ONC RPC and NBSSGuy Harris1-1/+4
dissectors to use it, from Ronnie Sahlberg, with additional changes to handle the case where a frame contains messages that don't run past the end followed by one that does and where a reassembled chunk has, at the end, a message that runs past the end of that chunk (because the reassembly was for an earlier message). svn path=/trunk/; revision=3923
2001-08-04Replace the protocol-specific data in the "packet_info" structure with aGuy Harris1-10/+2
"void *" that a dissector can set to point to such a structure; that means that the stuff in the epan directory doesn't have to know anything about the protocol-specific private data one dissector passes to another, and that structure doesn't have to be changed if a dissector wants to pass some new type of data to another dissector. svn path=/trunk/; revision=3818
2001-06-04Define a "COPY_ADDRESS()" macro, which copies the data in one address toGuy Harris1-1/+16
another (copying the data to a mallocated array) in "epan/packet_info.h", and use it in the conversation code. svn path=/trunk/; revision=3510
2001-06-04Add an "ADDRESSES_EQUAL()" macro, taking pointers to two "address"Guy Harris1-3/+7
structures as arguments, that evaluates to "true" if the two addresses are equal and "false" if they're not equal. Use that macro in the conversation code. svn path=/trunk/; revision=3509
2001-05-27RX and AFS dissectors tvbuffified, and bugs fixed, by Ronnie Sahlberg.Guy Harris1-1/+10
svn path=/trunk/; revision=3454
2001-04-01Moved the packet_info structure and supporting functions out ofEd Warnicke1-0/+101
packet.{h,c} and into a separate packet_info{h,c}. svn path=/trunk/; revision=3225