Is there any support for network programming in C++

V

ViPeR

Hi,
I was wondering, is there any support for network programming in C++.
Java doesn't seem to lack in this arena. Socket programming is very
simple in Java. Does C++ have any libraries for networking, whether
standard or 3rd party?


Thank you.
 
D

Deming He

ViPeR said:
Hi,
I was wondering, is there any support for network programming in C++.
Java doesn't seem to lack in this arena. Socket programming is very
simple in Java. Does C++ have any libraries for networking, whether
standard or 3rd party?


Thank you.

I am afraid that it doesn't. There are some many libraries of networking
programming for various platforms.
 
C

Chris Mantoulidis

Hi,
I was wondering, is there any support for network programming in C++.
Java doesn't seem to lack in this arena. Socket programming is very
simple in Java. Does C++ have any libraries for networking, whether
standard or 3rd party?


Thank you.

Java is great for network applications. Plus it is platform
independent. Why use C++ then?

If you really, trully want to use C++, you can use some 3rd party C++
library (non-standard though).
 
R

Roger Leigh

I was wondering, is there any support for network programming in C++.
Java doesn't seem to lack in this arena. Socket programming is very
simple in Java. Does C++ have any libraries for networking, whether
standard or 3rd party?

No. However...

It's very likely your operating system supports the POSIX
specification. If so, it's possible to use the POSIX networking
calls: socket(), connect(), accept() etc. There are probably C++
wrapper libraries available.

<URL:http://www.unix.org/version3/online.html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,014
Latest member
BiancaFix3

Latest Threads

Top