CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2002
    Location
    Germany
    Posts
    3

    C++ on Linux platform

    Hello all,
    I need to know how to implement a Multithreaded TCP/IP server in C++.
    Any help where can I find Source Code would be great.....


  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: C++ on Linux platform

    You might want to take a look at the following examples (source code included)...

    http://www.codeguru.com/network/friendlytalk.shtml
    http://www.codeguru.com/network/mt_server.html

    Ciao, Andreas

    Ciao, Andreas

    "Software is like sex, it's better when it's free." - Linus Torvalds

  3. #3
    Join Date
    Jan 2002
    Posts
    19

    Re: C++ on Linux platform

    POSIX Threads (libpthread) can be used for multi-threading. Linux comes standard with it.

    Regards,
    -d


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