C++ Sockets

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • crashnburn

    C++ Sockets

    Hi there,

    I was wondering if C++ has some kind of default new socket wrapper, that
    avoids many lines of code. Maybe there is a good C++ library?

    Any ideas? I'm using UNIX, but portability would be great.

    Regards
  • Victor Bazarov

    #2
    Re: C++ Sockets

    "crashnburn " <crashnburn@ip. pt> wrote...[color=blue]
    > I was wondering if C++ has some kind of default new socket wrapper, that
    > avoids many lines of code.[/color]

    No, it most certainly doesn't.
    [color=blue]
    > Maybe there is a good C++ library?[/color]

    Try looking for a post (happens here once a month or so) from
    Nikki Locke, titled "Available C++ Libraries FAQ". It has
    a link to an online list of various libraries, communications
    is probably one of the sections there.
    [color=blue]
    > Any ideas? I'm using UNIX, but portability would be great.[/color]

    Maybe you should ask in a UNIX programming newsgroup?...

    Victor


    Comment

    • Artie Gold

      #3
      [OT] Re: C++ Sockets

      crashnburn wrote:[color=blue]
      > Hi there,
      >
      > I was wondering if C++ has some kind of default new socket wrapper, that
      > avoids many lines of code. Maybe there is a good C++ library?
      >
      > Any ideas? I'm using UNIX, but portability would be great.
      >[/color]

      Standard C++, the topic of this newsgroup, knows not of sockets.
      Therefore your question is decidedly off-topic.

      --ag

      [hint: do a web search "C++ sockets" and you'll find plenty of options]


      --
      Artie Gold -- Austin, Texas



      ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
      http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
      ---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---

      Comment

      • Charles Wilkins

        #4
        Re: C++ Sockets

        On Wed, 02 Jul 2003 20:35:52 +0100, crashnburn <crashnburn@ip. pt>
        wrote:
        [color=blue]
        >Hi there,
        >
        >I was wondering if C++ has some kind of default new socket wrapper, that
        >avoids many lines of code. Maybe there is a good C++ library?[/color]
        there are always going to be many lines of code.
        [color=blue]
        >
        >Any ideas? I'm using UNIX, but portability would be great.[/color]
        sdl_net

        works in 'nix and winders
        [color=blue]
        >
        >Regards[/color]

        Comment

        • Charles Wilkins

          #5
          Re: C++ Sockets

          On Wed, 16 Jul 2003 20:20:09 GMT, "Daniel T."
          <postmaster@ear thlink.net> wrote:
          [color=blue]
          >Charles Wilkins <2boxers_at_com cast.net> wrote:
          >[color=green]
          >> On Wed, 02 Jul 2003 20:35:52 +0100, crashnburn <crashnburn@ip. pt>
          >> wrote:
          >>[color=darkred]
          >> >Hi there,
          >> >
          >> >I was wondering if C++ has some kind of default new socket wrapper, that
          >> >avoids many lines of code. Maybe there is a good C++ library?[/color]
          >> there are always going to be many lines of code.
          >>[color=darkred]
          >> >
          >> >Any ideas? I'm using UNIX, but portability would be great.[/color]
          >> sdl_net
          >> http://www.libsdl.org/projects/SDL_net/
          >> works in 'nix and winders[/color]
          >
          >I didn't see anything about a socket library in SDL...[/color]

          here is a link to an SDL_net socket library function

          Comment

          Working...