Discussion:
winsock "low level"
(too old to reply)
Eduardo Jauch
2007-07-05 16:57:01 UTC
Permalink
Can someone point to me a way to use ports to make TCP/IP transactions
more "low level" than using winsock?

I mean, There's a way to use directly the ports, without using winsock
or another high level object?

It's just curiosity.
"I1m not pretend using this on any "comercial software". Only learning
how it works [:)]

Thanks!
Remy Lebeau (TeamB)
2007-07-05 18:00:19 UTC
Permalink
Post by Eduardo Jauch
Can someone point to me a way to use ports to make
TCP/IP transactions more "low level" than using winsock?
The only way is to access the network adapters directly, bypassing the
OS. You can't do that through the Win32 API. You can use third-party
drivers, such as WinPCap (http://www.winpcap.org) for that, though.


Gambit
Eduardo Jauch
2007-07-05 19:13:50 UTC
Permalink
Post by Remy Lebeau (TeamB)
Post by Eduardo Jauch
Can someone point to me a way to use ports to make
TCP/IP transactions more "low level" than using winsock?
The only way is to access the network adapters directly, bypassing the
OS. You can't do that through the Win32 API. You can use third-party
drivers, such as WinPCap (http://www.winpcap.org) for that, though.
Gambit
I'll take a look!
Thanks Gambit! :)

Loading...