http://www.vbip.com/winsock-api/test...stbench-02.asp

That contains part of a module, in it's contents:
VB Code:
  1. Public Enum SocketType
  2.     SOCK_STREAM = 1    ' /* stream socket */
  3.     SOCK_DGRAM = 2     ' /* datagram socket */
  4.     [b]SOCK_RAW[/b] = 3       ' /* raw-protocol interface */
  5.     SOCK_RDM = 4       ' /* reliably-delivered message */
  6.     SOCK_SEQPACKET = 5 ' /* sequenced packet stream */
  7. End Enum
Does anyone have any examples/tutorials/idea on how to implement SOCK_RAW?

http://msdn.microsoft.com/library/de...nxref_8xo2.asp
http://www.microsoft.com/mspress/books/index/5726.asp
http://ftp.rediris.es/ftp/software/w...t/winsock2.txt

(Sites containing information about SOCK_RAW, if your confused about what I'm asking.)