vote up 1 vote down star
1

Want to implement some network capabilities and I wonder what library should one use for cross-platform purposes.

Have only java experience in sockets, so google gave a few tutorials using sys/sockets.h, library sockets++ and boosts asio, which all should be crossplatform capable.

Basically I want to use tcp and ipv4 (maybe ipv6 later on) to send some sensitive documents which will be encrypted with RSA.

What do you suggest? and yes it must be cross-platform.

Edit: Also using qt4 and noticed that it had a network module. How does it compare to the rest ?

flag

5 Answers

vote up 6 vote down check

You can use normal bsd-style sockets. You may have a few #ifdef's going on to detect the OS specific defines, but in general they are the same on all operating systems.

If you'd like to avoid the #ifdefs altogether, you should use boost::asio which was just known as asio and recently included inside boost. Asio was also submitted to the C++ standards committee for possible inclusion in C++ TR2.

link|flag
Boost is the way. Trust it. – DaedalusFall Mar 24 at 17:36
vote up 6 vote down

The best socket library out there using modern c++ is:

However for older style C++ which is probably more familiar to java users, you may like the socket support in trolltech's QT library:

--jdkoftinoff

link|flag
vote up 4 vote down

I've had success with ADAPTIVE Communication Environment, which consists of platform independant object oriented wrappers for most low level operating system calls (threading, sockets, etc).

ACE is open source and runs on a crazy number of platforms:

The portability of ACE's OS adaptation layer enables it to run on a many operating systems. ACE has been ported and tested on a wide range of OS platforms including Windows (i.e., WinNT 3.5.x, 4.x, 2000, Embedded NT, XP, Win95/98, and WinCE using MSVC++, Borland C++ Builder, and IBM's Visual Age on 32- and 64-bit Intel and Alpha platforms), Mac OS X, most versions of UNIX (e.g., Solaris on SPARC and Intel, SGI IRIX 5.x and 6.x, DG/UX, HP-UX 10.x, and 11.x, Tru64UNIX 3.x and 4.x, AIX 3.x, 4.x, 5.x, DG/UX, UnixWare, SCO, and freely available UNIX implementations, such as Debian Linux 2.x, RedHat Linux 5.2, 6.x, 7.x, 8x, and 9.x, as well as the various Enterprise editions, SUSE Linux 8.1 and 9.2, Timesys Linux, FreeBSD, and NetBSD), real-time operating systems (e.g., LynxOS, VxWorks, ChorusOS, QnX Neutrino, RTEMS, OS9, and PSoS), OpenVMS, MVS OpenEdition, and CRAY UNICOS. A single source tree is used for all these platforms.

link|flag
vote up 2 vote down

You can trust boost. It is cross-platform, peer reviewed and well-tested.

link|flag
How cross-platform do you want to be? I've had serious problems with boost when I've had to compile for OSX, Windows, Linux, Solaris, etc. I've worked on projects for GameCube, Xbox, PS2, PS3, XBox 360, Wii, DS, and PSP - though not at the same time. In these cases, regarding boost: run. – unknown (yahoo) Mar 24 at 17:28
I have successfully worked with boost on OSX, Windows, Linux and a few more. Not, any specialized hardware though. – dirkgently Mar 24 at 17:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.