|
-
May 2nd, 2002, 04:26 PM
#1
Thread Starter
Hyperactive Member
Winsock - using SOCK_RAW
http://www.vbip.com/winsock-api/test...stbench-02.asp
That contains part of a module, in it's contents:
VB Code:
Public Enum SocketType
SOCK_STREAM = 1 ' /* stream socket */
SOCK_DGRAM = 2 ' /* datagram socket */
[b]SOCK_RAW[/b] = 3 ' /* raw-protocol interface */
SOCK_RDM = 4 ' /* reliably-delivered message */
SOCK_SEQPACKET = 5 ' /* sequenced packet stream */
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.)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|