00001 /* -*-mode: C++; style: K&R; c-basic-offset: 4 ; -*- */ 00002 00003 /* 00004 * servicedetect.h 00005 * Simple class which attempts to detect the service running upon a port. 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 _SERVICE_DETECT_H 00030 #define _SERVICE_DETECT_H 1 00031 00032 00033 00034 00042 class CServiceDetect 00043 { 00044 00045 public: 00046 00047 00055 CServiceDetect( char *host, int port ); 00056 00057 00061 ~CServiceDetect(); 00062 00063 00064 public: 00065 00070 char *getServiceName( ); 00071 00072 00073 protected: 00074 00075 00082 int createSocket( char *hostname, int port ); 00083 00084 00085 private: 00086 00090 char m_serviceName[ 1024 ]; 00091 00092 00093 }; 00094 00095 #endif /* _SERVICE_DETECT_H */