CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Mar 2010
    Location
    Melbourne Australia
    Posts
    454

    Networking with STL

    Are there any classes in standard template library , which help in networking or in standard C library , other than using native API like wsock32 or third party toolkit like QT or wxwidgets.

  2. #2
    Join Date
    Nov 2006
    Location
    Essen, Germany
    Posts
    1,344

    Re: Networking with STL

    No, there aren´t.
    - Guido

  3. #3
    Join Date
    Jul 2002
    Location
    Portsmouth. United Kingdom
    Posts
    2,727

    Re: Networking with STL

    There is always Boost threads.
    http://www.boost.org/doc/libs/1_45_0...ml/thread.html

    There will also be thread support in C++ Ox
    http://www2.research.att.com/~bs/C++0xFAQ.html#std-thread
    Your compiler may already support them.
    "It doesn't matter how beautiful your theory is, it doesn't matter how smart you are. If it doesn't agree with experiment, it's wrong."
    Richard P. Feynman

  4. #4
    Join Date
    Mar 2010
    Location
    Melbourne Australia
    Posts
    454

    Re: Networking with STL

    thank you all

  5. #5
    Join Date
    Jan 2009
    Posts
    1,689

    Re: Networking with STL

    Exactly what kind of networking do you want to do? libcurl supports several network protocols, and is the standard for things like that. It's primarily used for internet and non-local networks, but can do private networking too.

  6. #6
    Lindley is offline Elite Member Power Poster
    Join Date
    Oct 2007
    Location
    Seattle, WA
    Posts
    10,895

    Re: Networking with STL

    Boost ASIO supports socket communication via the iostream interface.

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