Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / MFC
Article

How to get the clients IP address using TcpClient in Managed C++

Rate me:
Please Sign up or sign in to vote.
4.94/5 (14 votes)
10 Apr 20021 min read 260K   40   31
How to get the clients IP address using TcpClient in Managed C++

Introduction

In managed C++ using sockets, Microsoft is giving you a whole set of new tools to use Sockets. So you don't have to create a class to handle Client and Server communications. These classes are TcpListener for the server and

TcpClient
.

TcpListener * pTcpListener;
TcpListener = new TcpListener(80);
TcpListener->Start(); 
TcpClient * pTcpClient; 
pTcpClient = m_TcpListener->AcceptTcpClient();

This opens port 80 and listens for connections. When a client connects to port 80, the function AcceptTcpClient() returns with a TcpClient class.

Those two classes together are very powerful. You should create a thread to use the TcpClient and wait again to accept another client.

The problem I had is I need it to get the IP address of the Client. I couldn't find the way to get it from the TcpClient, even after I get the Stream like this:

 NetworkStream * networkStream = pTcpClient->GetStream();
networkStream->Read(bytes, 0, (int) pTcpClient->ReceiveBufferSize);

Now that I had a NetworkStream I thought I could get the IP address, well I was wrong again. networkStream->getSocket() is a private member of the class NetworkStream.

So, to resolve this problem I had to create a derived class from NetworkStream:

//MyNetworkStream.h
#pragma once

__gc class MyNetworkStream : public NetworkStream
{
public:
	MyNetworkStream(void) : NetworkStream(0) { };
	MyNetworkStream(System::Net::Sockets::Socket * s) : NetworkStream(s) { };
	
	System::Net::Sockets::Socket * get_MySocket();
	String * get_IPAddress(void);
};



//MyNetworkStream.cpp file
#using <System.dll>
#using <mscorlib.dll>
using System::Net::Sockets::NetworkStream;
using System::String;

#include "myNetworkStream.h"


System::Net::Sockets::Socket * MyNetworkStream::get_MySocket()
{
	return(this->get_Socket());
}

String * MyNetworkStream::get_IPAddress(void)
{
	System::Net::Sockets::Socket *soc = get_Socket();
	System::Net::EndPoint		*Endp = soc->get_RemoteEndPoint();

	return(Endp->ToString());
}

So when you have this class, you only have to do something like that to get the client's IP address and socket:

NetworkStream * networkStream = pTcpClient->GetStream(); 
MyNetworkStream * myStream =  static_cast<MyNetworkStream *>(networkStream);
ClientIP = myStream->get_IPAddress();
Console::Write(S"Client IP Address ");
Console::WriteLine(ClientIP);
networkStream->Read(bytes, 0, (int) pTcpClient->ReceiveBufferSize);

There you go! IP address and everything. Now if you don't use TcpClient, you could AcceptSocket() instead of AcceptTcpClient() to get the socket. When you have the socket you can use get_RemoteEndPoint(), but I thought that you will like to use TcpClient.

Have fun!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Al is just another Software Engineer working in C++, ASp.NET and C#. Enjoys snowboarding in Big Bear, and wait patiently for his daughters to be old enough to write code and snowboard.

Al is a Microsoft ASP.NET MVP

Blog

Comments and Discussions

 
GeneralMy vote of 5 Pin
arid0813-Jan-13 23:06
arid0813-Jan-13 23:06 
Questioninclude files? Pin
bkelly1321-Oct-10 17:16
bkelly1321-Oct-10 17:16 
GeneralIs there a way to sent stream out through a specific IP in a multi-IP server Pin
ErickJackob3-May-09 16:10
ErickJackob3-May-09 16:10 
General[Message Deleted] Pin
it.ragester2-Apr-09 21:42
it.ragester2-Apr-09 21:42 
QuestionHow to pass TcpClient^ to a function as an argument? Pin
AlwaysStudent10-Nov-07 19:06
AlwaysStudent10-Nov-07 19:06 
QuestionUrgent Question Answer? Pin
princedatta29-Oct-07 23:31
princedatta29-Oct-07 23:31 
Questionwhat? Pin
System.Object21-Jul-06 12:21
System.Object21-Jul-06 12:21 
Answerusing TcpClient's property Pin
evoisard3-Jul-08 5:14
evoisard3-Jul-08 5:14 
Generalhi! Pin
scootz334512-Jul-05 18:25
sussscootz334512-Jul-05 18:25 
GeneralRe: hi! Pin
Albert Pascual13-Jul-05 4:54
sitebuilderAlbert Pascual13-Jul-05 4:54 
GeneralRe: hi! (Need Help ) Pin
patilabhijit10-Apr-07 3:57
patilabhijit10-Apr-07 3:57 
GeneralThe code seems to be wrong. Pin
Huanlin Tsai7-May-05 0:46
Huanlin Tsai7-May-05 0:46 
Generalneed some guide... Pin
chal_adiera23-Mar-05 23:10
chal_adiera23-Mar-05 23:10 
GeneralRe: need some guide... Pin
mmatchyn18-Nov-05 13:54
mmatchyn18-Nov-05 13:54 
GeneralI need This in c++ directly using winsock, not using MFC Pin
Anonymous20-Mar-04 14:20
Anonymous20-Mar-04 14:20 
Generalthanks for the description Pin
Adam Jones17-Nov-03 11:11
Adam Jones17-Nov-03 11:11 
GeneralThanks very much Pin
Anonymous23-Mar-04 3:21
Anonymous23-Mar-04 3:21 
GeneralRe: thanks for the description - in C++ Pin
AndyKEnZ4-Dec-07 2:59
AndyKEnZ4-Dec-07 2:59 
Generalthe result includes port # Pin
duhduhduh20-Feb-03 20:02
duhduhduh20-Feb-03 20:02 
GeneralI need this in vb.net Pin
SoTTo29-Oct-02 4:39
SoTTo29-Oct-02 4:39 
GeneralRe: I need this in vb.net Pin
Pete Bassett29-Oct-02 7:46
Pete Bassett29-Oct-02 7:46 
GeneralRe: I need this in vb.net Pin
Pete Bassett29-Oct-02 7:52
Pete Bassett29-Oct-02 7:52 
GeneralRe: I need this in vb.net Pin
Member 56031918-Jan-03 8:48
Member 56031918-Jan-03 8:48 
GeneralRe: I need this in vb.net Pin
linge23-May-06 21:51
linge23-May-06 21:51 
GeneralRe: I need this in vb.net Pin
Polymorpher13-Mar-06 18:47
Polymorpher13-Mar-06 18:47 

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

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