00001 /* -*-mode: C++; style: K&R; c-basic-offset: 4 ; -*- */ 00002 00003 /* 00004 * portscanner.h 00005 * Simple wrapper around a naive TCP/IP port scanner. 00006 * 00007 * 00008 * This program is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this program; if not, write to the Free Software 00020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00021 * 00022 * Steve Kemp 00023 * --- 00024 * http://www.steve.org.uk/ 00025 * 00026 */ 00027 00028 00029 #ifndef _PORT_SCANNER_H 00030 #define _PORT_SCANNER_H 1 00031 00032 00033 #include <vector> 00034 #include <string> 00035 00036 00056 class CPortScanner 00057 { 00058 00059 public: 00060 00066 CPortScanner( const char *host ); 00067 00068 00072 ~CPortScanner( ); 00073 00074 00075 public: 00076 00085 std::vector< int > doScan( int start = 0, int end = 1024 ); 00086 00087 00088 private: 00092 std::string m_hostName; 00093 00094 00095 }; 00096 00097 #endif /* _PORT_SCANNER_H */