views:

137

answers:

7

Hi, I'm looking for a simplest (and fastest) example of TCP socket programming for windows, c or c++, whichever can get it accomplished faster, sending trival data, for example 1 byte, or several bytes, but in one packet. It's for research purposes. I googled and found several examples, however every single of out them looks a bit different, some are in C, some are in C++, some use ZeroMemory (from windows), some use memset, some of them assign data in different ways, so while I can find examples of winsock in c/c++ and while I'm not an expert in socket programming - I'm not sure what's the absolutely minimalistic c/c++ code to get it accomplish in a fastest way possible.

I know that UDP would be much faster, but it needs to be reliable at the same time, hence I'm looking for TCP.

I guess I could try each of them and try to time them, but was wondering if some socket/winsock expert here would have a super simple server/client in C/C++ with some timing function (high resolution) at the end. I say super simple, because I'm trying to determine how fast (and the fastest way) can socket transmit on my machines, of course it can include turning off Nagle's algorithm, which is what I would like to do anyway. I'm not sure what other tricks people use.

Thanks.

+2  A: 

Try Len Holgate's socket server framework. I believe he has commercialized this in a packaged version but this should be a good place to start. There is a client implementation tutorial included. This is not the simplest code but if you are interested in maximizing performance, simple code may not meet your needs.

You will have to add your own timing support, but that's likely true for any possible off-the-shelf package.

Steve Townsend
Thanks, I'll check it out. What I've meant by simplest and fastest was is exactly that, it might be necessary to add/tweak it for performance.
ra170
Steve, thanks for the link, probably a better jumping off point is this link: http://www.serverframework.com/products---the-free-framework.html which has the latest free code plus full details of the commercial version.
Len Holgate
@Len - you are welcome - your online postings were v helpful to me when implementing IOCP server/client code
Steve Townsend
+2  A: 

Boost Asio is probably your best bet. it's a very good library with timing support and everything you should need to get going.

edit: I know that this isn't a pre-built client/server which is exactly what you are looking for, but Asio makes it extremely easy to get what you want out of a few lines of code.

Kyle C
Not looking for library just yet, but thanks for reference.
ra170
A: 

Take a look at our MsgConnect product. Looks like it fits your needs perfectly. It lets you send messages with generic payload via TCP connection (and some other transports), and can work in client-server or peer-to-peer modes.

Eugene Mayevski 'EldoS Corp
A: 

The most minimal examples of which I am aware are in Beej's Guide.

Billy ONeal
Thank you, I found that one as well, but wasn't sure if that was in fact the simplest. Thank again.
ra170
A: 

I've just implemented a network solution using socket++, and it works pretty well. I believe that it's the basis for boost asio, so if you don't want to install all of boost, you can check it out.

The point of the library is that you can use a stream with your socket, sending data as you would to std::cout or std::cerr.

EDIT: if you're using more recent versions of windows, then this library would need some tweaking to compile (it works fine as-is for XP, but apparently some networking code got moved around for win vista and 7).

mmr
yes, I use windows 7 and windows server 2003, but thank you. I will check it out today, sometime soon.
ra170
ah, ok. The changes involve removing most of the unix-y code (like forking), linking to ws2_32.lib, getting rid of all the tests, and making sure that the WSAE identifiers are working. So maybe not that simple to get working in win7, but once it's there, it's a case of "myStream << "Here is a string to send on the network! << std::endl; mystream.flush()"
mmr
A: 

Before writing the third comment, I collect them in an answer

Peter G.
+1  A: 

If you want an off the shelf product, look at any of the messaging products available. They require the least amount of coding to get going, typical examples are:

Open Source:

  1. OpenDDS - based on the DDS protocol (very high performance - used in things like submarine, ship control systems etc.) Their implementation is slightly slower than raw boost::asio, however for ease of use and the bells and whistles, hard to beat.
  2. ZeroMQ - similar to DDS, but based on the MQ protocol, again very fast (millions of messages/sec), MQ is established, but ZeroMQ is not there yet.
  3. AMQP - I believe you'll be able to find something from Red Hat in this space, again very fast, and a new protocol.

Commercial:

  1. Tibco RV: hard to beat, except by hardware vendors
  2. 29West - hardware (and software - thought I've never personally played with it)
  3. Solace - hardware
  4. Tervella - hardware

The last three assumes you've got a few million bucks lying around! ;)

Nim