Click here to Skip to main content
Licence 
First Posted 8 Dec 2001
Views 195,335
Bookmarked 68 times

CAsyncProxySocket - CAsyncSocket derived class to connect through proxies

By | 18 Dec 2001 | Article
This class allows you to establish connections through SOCKS4/5 and HTTP 1.1 proxies.

Sample Image - casyncproxysocket\casyncproxysocket_demo.gif

Introduction

This class is a CAsyncSocket derived class. With this class, you can connect through SOCKS4/5 and HTTP 1.1 proxies. This class works as semi-transparent layer between your own class and CAsyncSocket. This class is used in FileZilla, a powerful open-source FTP client. It can be found here. For more information about SOCKS4/5, go here. For more information about HTTP 1.1, go here and search for RFC2616 and RFC2617.

How to use?

If you are using CAsyncSocket, you don't have to change much in your already existing code to use CAsyncProxySocket. To use it, you've to derive your own class from CAsyncProxySocket instead from CAsyncSocket, and you've to provide a definition for OnProxyOperationFailed(int nOpID) and OnListenFinished(unsigned long &retProxyIp,int &retProxyPort). When you create an instance of your derived class, you should call SetProxy. If you overload the OnReceive or OnConnect functions in your derived class, you have to call CAsyncProxySocket::OnReceive and CAsyncProxySocket::OnConnect as first instruction in your OnReceive and OnConnect functions.

Sample code:

CMyClass::OnReceive(int nErrorCode)
{
CAsyncProxySocket::OnReceive(nErrorCode);
//Add you own implementation below:
...
}

If an operation fails, OnProxyOperationFailed is called. There you can handle the error. int nOpID specifies the type of the operation that failed: PROXYOP_CONNECT when a connection attempt failed and PROXYOP_LISTEN when creating a listen socket failed.

If you want to use CAsyncProxySocket to create a listen socket, you have to use this overloaded function: virtual BOOL Listen(unsigned long serverIp). serverIP is the IP of the server you are already connected through the SOCKS proxy. You can't use listen sockets over a SOCKS proxy without a primary connection. Listen sockets are only supported by SOCKS proxies, this won't work with HTTP proxies. When the listen socket is created successfully, OnListenFinished is called. The parameters unsigned long &retProxyIp and int &retProxyPort will tell you the IP and the port of the listen socket. After that, you have to handle the OnAccept message and accept the connection.

Description of the other new functions and their parameters

void SetProxy(int nProxyType);
void SetProxy(int nProxyType, CString ProxyHost, int nProxyPort);
void SetProxy(int nProxyType, CString ProxyHost, int nProxyPort,CString 
ProxyUser, CString ProxyPass);

Call one of these functions to set the proxy type. Parameters:

  • nProxyType specifies the Proxy Type.
  • ProxyHost and nProxyPort specify the address of the proxy.
  • ProxyUser and ProxyPass are only available for SOCKS5 proxies.

Supported proxy types:

  • PROXYTYPE_NOPROXY
  • PROXYTYPE_SOCKS4
  • PROXYTYPE_SOCKS4A
  • PROXYTYPE_SOCKS5
  • PROXYTYPE_HTTP11
GetProxyPeerName

GetProxyPeerName is like GetPeerName of CAsyncSocket, but returns the address of the server connected through the proxy. If using proxies, GetPeerName only returns the address of the proxy.

int GetProxyType()

Returns the used proxy type.

const int GetLastProxyError() const;

Returns the last proxy error.

History

  • 20 Dec 2001
    • Added basic HTTP 1.1 authentication.
    • Fixed memory leak in SOCKS5 code.
    • OnSocksOperationFailed will be called after Socket has been closed.
    • Fixed some minor bugs.
  • 9 Dec 2001
    • Initial release.

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

About the Author

Tim Kosse

Web Developer

Germany Germany

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
Generaldownload links are down :( PinsussAnonymous16:03 13 Aug '04  
QuestionWhat about SSL 3? PinmemberAmiri1:20 20 May '04  
Generalhttp/1.1 server PinsussAnonymous19:22 26 Apr '04  
GeneralSocksified client PinmemberAnnoymous21:59 1 Mar '04  
GeneralRe: Socksified client PinsussAnonymous15:52 13 Aug '04  
GeneralConnect class PinsussAnonymous14:25 17 Feb '04  
QuestionWhere can i get the latest version of CAsyncProxySocket?? Pinmemberajiva16:46 17 Jan '04  
Generalhelp me with http1.1 proxy!!!! Pinmemberanglely16816:25 11 Nov '03  
GeneralHelp me -Proxy issue Pinmemberdharani23:49 7 Aug '03  
QuestionWhy I can't using CAsyncSocketEx::Send() function? PinmemberDreamsky18:22 26 Apr '03  
GeneralListening thru a proxy PinsussAnonymous2:32 21 Jan '03  
QuestionCProxySocket ?? Pinmemberirekz@yahoo.com3:17 20 Jan '03  
GeneralNon-MFC proxy class PinmemberBui Huy Kien15:00 30 Dec '02  
GeneralRe: Non-MFC proxy class PinsussAnonymous16:41 30 Dec '02  
GeneralRe: Non-MFC proxy class PinmemberBui Huy Kien16:56 30 Dec '02  
GeneralRe: Non-MFC proxy class PinmemberTim Kosse5:18 26 Mar '03  
QuestionRe: Non-MFC proxy class PinmemberMember 111362113:36 9 Oct '08  
GeneralProxy Server(s) To Test With Pinmemberwin32mfc8:26 30 Dec '02  
GeneralRe: Proxy Server(s) To Test With PinmemberTim Kosse9:35 30 Dec '02  
GeneralRe: Proxy Server(s) To Test With Pinmembersctsct20:33 6 Jul '06  
Good morning!
Smile | :) Smile | :) Big Grin | :-D Laugh | :laugh: Wink | ;) Sleepy | :zzz: Sleepy | :zzz: Sleepy | :zzz:
GeneralBug Pinsussallex22:40 28 Oct '02  
GeneralAnd one more Pinsussallex22:43 28 Oct '02  
GeneralRe: And one more PinsussMr. Anonymous9:16 30 Oct '02  
GeneralRe: Bug PinsussMr. Anonymous9:13 30 Oct '02  
GeneralRe: Bug PinmemberTim Kosse7:15 1 Nov '02  

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 19 Dec 2001
Article Copyright 2001 by Tim Kosse
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid