DSTR3
DSTR3

Reputation: 31

How To Reassemble TCP Packets

Ok, Ive been searching the net for weeks now. I have a sniffer in C++ and it's grabbing all of the usual information, what I am missing is the ability to take these TCP packets, reassemble them and parse the HTTP headers. I'm doing this in Windows 7, Visual Studio 2010 C++ with WSA Sockets. I need some source code so that I can see how this is done. I've googled and yahoo'd and still don't have the answer. Why is this so hard to find. Any help is appreciated.

Upvotes: 1

Views: 1075

Answers (1)

RichieHindle
RichieHindle

Reputation: 281415

Wireshark is an open source sniffer and protocol analyser that can do what you're asking, so I guess its source code has the answer.

Upvotes: 2

Related Questions