00001 /* -*-mode: C++; style: K&R; c-basic-offset: 4 ; -*- */ 00002 00003 /* 00004 * services.h 00005 * Simple wrapper around /etc/services 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 _SERVICES_H 00030 #define _SERVICES_H 1 00031 00032 00033 #include <vector> 00034 #include <string> 00035 00036 00037 00045 class CServices 00046 { 00047 00048 public: 00049 00050 00058 static std::string LookupByPort( int port, const char *proto = "tcp" ); 00059 00060 00061 00069 static int LookupByName( const char *name, const char *proto = "tcp" ); 00070 00071 00072 }; 00073 00074 #endif /* _SERVICES_H */