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

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top