Click here to Skip to main content
Licence BSD
First Posted 11 Jul 2004
Views 121,399
Downloads 2,585
Bookmarked 27 times

Java Style Socket Programming in C++

By | 15 Nov 2007 | Article
An article on socket programming in raw C++ on the Windows platform

Introduction

This article provides a C++ wrapper to the WINSOCK functions. The code consists of four classes; they are: CServerSocket, CSocket, CSocketAddress and CSocketException. These classes try to imitate Java socket classes whenever possible. They are designed to provide a very simple interface to sockets and I am sure you will find them useful in some way.

Using the Code

The first step in using the socket classes is to initialize the Windows socket library. This can by done by calling the CWinSock class's Initialize() static function. After using the socket classes, the library must be unloaded by calling the CWinSock class's Finalize() static function.

CWinSock::Initialize();

// socket calls

CWinSock::Finalize();

To create a server, declare an object CServerSocket and call its Accept() function. There are three constructors to CServerSocket. The default constructor that takes no argument and initializes the server to listen on port 80. A server also has a queue size, i.e. the number of connections that will wait in an internal queue for processing. This defaults to 10. Another constructor takes the port number as an argument. There is yet another constructor that receives the port number and queue size as arguments.

The Accept() function returns a pointer to CSocket. The application can use this pointer to communicate with the client. Use the Read() and Send() functions for this. Read() takes two arguments: a pointer to a character buffer and an integer that specifies the number of bytes to read. It is the caller's duty to initialize this buffer. Send() takes a pointer to a character buffer as its argument. This is the data to write to the network. After all reading and writing is over, it is the caller's duty to delete the CSocket object. The following snippet illustrates a simple server that accepts a single connection.

// headers required by socket classes in sock.h
#include < string>
#include < vector>
using namespace std;
#include < windows.h>

#include "sock.h"
using namespace openutils;

int main() 
{
  CServerSocket server(100); // server listening on port 100
  CSocket* client = server.Accept(); // accepting a client
  char *buffer = new char[100];
  client->Read(buffer,99); 
  // reads some data from client
  // client-> sends it back to the client
  delete client; // deletes the client socketr
  delete[] buffer;
  server.Close(); // closes the server
} 

In a real-world project, Accept() should be put in a separate thread and each new client socket should be handled by a new thread. For more details on creating threads in C++, see my article Synchronized multi-threading in C++ (No MFC!) on CodeProject.com. To create a client socket, call the Connect() function of the CSocket class. Here is a short example:

CSocket client;
client.Connect("http://www.yahoo.com",80);
client.Send("GET / HTTP 1.1 \r\n");
client.Read(buffer,(BUFF_SZ-1));
printf("\n%s",buffer);
client.Close();

Of course, the above code does not send a valid HTTP request, but it demonstrates how a CSocket object can be used to connect to a running server and communicate with it. There is also a utility class called CSocketAddress. The CSocket class has an embedded object of CSocketAddress. You can get a pointer to this object by calling the GetAddress() function of CSocket. Using this pointer, you can retrieve useful information about the server that the CSocket is connected to, like its DSN, aliases (if any), IP address, etc. Also keep in mind that all socket code should be enclosed in a try-catch block that handles CSocketExceptions:

try 
{
    // socket calls
}
catch(CSocketException ex) 
{
    printf("\nError: %d,%s",ex.GetCode(),ex.GetMessage());
}

History

  • Created: July 08, 2004
  • Updated: November 15, 2007

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

AnOldGreenHorn



India India

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralTypo in code for server app - wrong port PinmemberHarry1765:08 29 Jul '08  
GeneralProblem with example server application PinmemberMårten Palm1:04 18 Jul '08  
GeneralRe: Problem with example server application PinmemberVijay Mathew Pandyalakal20:16 18 Jul '08  
GeneralRe: Problem with example server application PinmemberMårten Palm0:30 20 Aug '08  
Questionsocket Pinmemberthuyantt117:10 15 Nov '07  
GeneralBug...... Pinmemberdubbele onzin4:01 14 Nov '07  
GeneralRe: Bug...... PinmemberVijay Mathew Pandyalakal17:16 14 Nov '07  
QuestionHow to join client and server in one program? Pinmembermaglev_tgv18:02 12 Nov '07  
The program will always listen to the connection, but also can send message to another computer ( that running the same program ). And the program will do something when receive a specific message .
 
Thanks in advance
 
----------
C++ Learner

AnswerRe: How to join client and server in one program? PinmemberVijay Mathew Pandyalakal17:37 13 Nov '07  
GeneralSend Unsigned char Pinmemberwira1guys18:36 25 Sep '07  
GeneralRe: Send Unsigned char PinmemberVijay Mathew Pandyalakal18:06 26 Sep '07  
GeneralLicense and Usage of the Code PinmemberJay Kint19:20 13 Jun '06  
GeneralRe: License and Usage of the Code PinmemberVijay Mathew Pandyalakal21:27 13 Jun '06  
GeneralCan't build the code PinmemberJim Archer13:42 30 Apr '06  
GeneralRe: Can't build the code PinmemberVijay Mathew Pandyalakal16:41 1 May '06  
GeneralRe: Can't build the code PinmemberJim Archer10:15 2 May '06  
GeneralRe: Can't build the code PinmemberJim Archer15:46 7 May '06  
GeneralRe: Can't build the code PinmemberVijay Mathew Pandyalakal16:56 7 May '06  
QuestionMultithreaded Server with Thread class Pinmemberamdopteron9:28 2 Nov '05  
AnswerRe: Multithreaded Server with Thread class PinmemberVijay Mathew Pandyalakal2:25 3 Nov '05  
AnswerRe: Multithreaded Server with Thread class Pinmemberamdopteron7:01 4 Nov '05  
GeneralI need help using socket Pinmemberemsdell20:10 4 Jul '05  
GeneralRe: I need help using socket PinmemberVijay Mathew Pandyalakal18:22 5 Jul '05  
Questionhow do you traverse proxy's with this code? Pinsussanonymous23:57 30 Jun '05  
AnswerRe: how do you traverse proxy's with this code? PinmemberMars1052:03 15 Nov '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 15 Nov 2007
Article Copyright 2004 by AnOldGreenHorn
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid