Jump to content

C++ Sockets

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
Khaotic

Khaotic

    Learning Programmer

  • Members
  • PipPipPip
  • 62 posts
How do I do sockets in C++? I can't find any tutorials on it...

#2
killcode

killcode

    Learning Programmer

  • Members
  • PipPipPip
  • 96 posts
Google "Winsock tutorials"
Posted Image

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
The C++ language doesn't have the concept of sockets. You have you use an OS specific solution or an extra library. Many GUI libraries and the Boost library provide this.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
Khaotic

Khaotic

    Learning Programmer

  • Members
  • PipPipPip
  • 62 posts
Thanks. That helped me alot.