PDA

View Full Version : C++ Question



perlsyntax
August 18th, 2008, 12:10 AM
How do i do raw socket in C++?

StOoZ
August 18th, 2008, 12:13 AM
any special reason why do you need raw sockets?

if you just need a network connection , you can use many other API's , boost:asio , wxwidgets , Qt .. etc.

perlsyntax
August 18th, 2008, 12:24 AM
i want to use some headers from C into my programs. i hear i don't have to use the boost lib.

happysmileman
August 18th, 2008, 01:13 AM
i want to use some headers from C into my programs. i hear i don't have to use the boost lib.

Raw sockets in C++ are the exact same as in C AFAIK (I haven't used them in ages though)

perlsyntax
August 18th, 2008, 01:56 AM
thanks