Click here to Skip to main content
15,896,372 members
Articles / Desktop Programming / MFC

How to write a simple but effective TCP/IP port scanner for Win32

Rate me:
Please Sign up or sign in to vote.
4.82/5 (15 votes)
27 Oct 20017 min read 163.1K   7.3K   101  
An article on how to write a TCP/IP port scanner with a GUI, based on the MFC's property sheet paradigm
/*
	CAsyncSockMessages.h
	Luca Piergentili, 04/09/98
	lpiergentili@yahoo.com
	http://www.geocities.com/lpiergentili/
*/
#ifndef _CASYNCSOCKMESSAGES_H
#define _CASYNCSOCKMESSAGES_H 1

// messaggi per WSAAsync...()
#define WM_ASYNCSELECT				(0x7FFF - 1)
#define WM_ASYNCREAD				(0x7FFF - 2)
#define WM_ASYNCWRITE				(0x7FFF - 3)
#define WM_ASYNCOOB					(0x7FFF - 4)
#define WM_ASYNCACCEPT				(0x7FFF - 5)
#define WM_ASYNCCONNECT				(0x7FFF - 6)
#define WM_ASYNCCLOSE				(0x7FFF - 7)

// idem per modalita' sincrona
#define WM_SYNCSELECT				(0x7FFF - 8)
#define WM_SYNCREAD					(0x7FFF - 9)
#define WM_SYNCWRITE				(0x7FFF - 10)
#define WM_SYNCOOB					(0x7FFF - 11)
#define WM_SYNCACCEPT				(0x7FFF - 12)
#define WM_SYNCCONNECT				(0x7FFF - 13)
#define WM_SYNCCLOSE				(0x7FFF - 14)

// messaggi per WSAAsyncGetXByY()
#define WM_ASYNCGETHOSTBYNAME			(0x7FFF - 15)
#define WM_ASYNCGETHOSTBYADDR			(0x7FFF - 16)
#define WM_ASYNCGETSERVBYNAME			(0x7FFF - 17)
#define WM_ASYNCGETSERVBYPORT			(0x7FFF - 18)

#endif // _CASYNCSOCKMESSAGES_H

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
Italy Italy
I like C and C++, Acid Jazz, James Brown, gli Spaghetti Aglio e Olio, alla Bolognesa, alla Puttanesca e le Fettuccine alla Matriciana ('Maccaroni' over the world). Of course I like beautiful big tits girls too, my little car, Frank Zappa, the art of Zen, italian coffee and much more...

Comments and Discussions