Examples for Winsock?

后端 未结 5 670
悲哀的现实
悲哀的现实 2020-12-08 06:08

What do you guys recommend for a resource for winsock?

I have an assignment that we have only have a few days to do that needs to send a simple packet using UDP (and

相关标签:
5条回答
  • 2020-12-08 06:09

    You need UDP, so use

    1. sendto()
    2. recvfrom()

    APIs (Windows).

    http://msdn.microsoft.com/en-us/library/ms740148%28VS.85%29.aspx

    http://msdn.microsoft.com/en-us/library/ms740120%28VS.85%29.aspx

    0 讨论(0)
  • 2020-12-08 06:09

    Possibly more advanced than you need right now but...

    I have a series of (rather old) articles on writing scalable servers using Winsock and IO Completion Ports and a free framework of code.

    The code and links to the articles are available here.

    0 讨论(0)
  • 2020-12-08 06:14

    Some are as follows:

    • Winsock Programming
    • Winsock Networking Tutorial (C++)
    • WinSock Tutorial
    0 讨论(0)
  • 2020-12-08 06:16

    How about the step-by-step guide to getting started with Windows Sockets programming from the Winsock documentation on MSDN.

    0 讨论(0)
  • 2020-12-08 06:26

    Besides the MSDN resource "Getting Started with Winsock" mentioned already I would recommend the "Winsock Programmer's FAQ" on tangentsoft.net.

    0 讨论(0)
提交回复
热议问题