services.h
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /* 
  2.  * Copyright (C) 2002 Michel Arboi
  3.  *
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the Free
  16.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  */   
  18.  
  19. #ifndef _NESSUSL_SERVICES_H
  20. #define _NESSUSL_SERVICES_H
  21. /* **** Config **** */
  22. /* If you want Nessus to switch to the system services file when its own file 
  23.  * fails, UNdefine the next symbol. Otherwise, /etc/services is read only 
  24.  * once when nessus-services is rebuilt */
  25. #define NESSUS_SVC_READS_ETC_SERVICES
  26. /* If you want Nessus to sort the services file before reading them,
  27.  * define the next symbol.
  28.  * Note : using popen() might be dangerous! Check that $PATH does not
  29.  * contain any special character */
  30. /*#define NESSUS_SVC_SORT_FILES*/
  31. /* **** FILES **** */
  32. #define NESSUS_SERVICES NESSUS_STATE_DIR "/nessus/nessus-services"
  33. /* If you want Nessus to use a second input file, uncomment next line */
  34. /*#define NESSUS_IANA_PORTS CONF_DIR "/iana-port-numbers"*/
  35. #define NESSUS_SERVICES_TCP NESSUS_STATE_DIR "/nessus/services.tcp"
  36. #define NESSUS_SERVICES_UDP NESSUS_STATE_DIR "/nessus/services.udp"
  37. /* Not really useful but for debug or information */
  38. #define NESSUS_SERVICES_TXT NESSUS_STATE_DIR "/nessus/services.txt"
  39. #define SERVICES_MAGIC 0x42
  40. struct nessus_service {
  41.   char   magic;
  42.   unsigned short ns_port;
  43.   char ns_name[128];
  44. };
  45. ExtFunc const char* nessus_get_svc_name(int, const char*);
  46. ExtFunc int nessus_init_svc(void);
  47. ExtFunc unsigned short * get_tcp_svcs(int * );
  48. #endif