CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2008
    Posts
    1

    Thumbs up How To Create A Udp Concurrent Server

    Hi
    i want to know how to create a UDP concurrent server
    can any one give the source code for UDP concurrent server and client

  2. #2
    Join Date
    Nov 2002
    Location
    California
    Posts
    4,556

    Re: How To Create A Udp Concurrent Server

    I don't have code for you, but why not try writing your own? Here is a list of tutorials.

    As a beginner, start with purely console-style applications. That way, you will not be distracted by user-interface issues:

    "Beej's Guide to Network Programming" from Beej at http://beej.us/guide/bgnet/ . This is a good guide for beginners. Your post did not mention whether you were programming in Windows or in Linux (or some other OS). Beej's guide is written primarily for Linux/Unix, but it's easily adaptable to Winsock/other OSs, since it uses basic ideas from the original BSD socket implementation.

    FAQ: "Where can I find examples of socket programs?" at http://www.codeguru.com/forum/showthread.php?t=326666 . Remember to confine yourself to the select-based console-style samples

    "Winsock Programmer's FAQ", under Section 6.1 "Basic Example Programs": http://tangentsoft.net/wskfaq/examples/basics/


    If gaming is your ultimate goal, then also:

    "Multiplayer and Networking Tutorials" at http://www.gamedev.net/reference/list.asp?categoryid=30 . Some of these are better than others, so be choosy

    Mike

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured