InetFaxServer.h
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: InetFaxServer.h,v 1.3 2009/09/08 00:24:46 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1995-1996 Sam Leffler
  4.  * Copyright (c) 1995-1996 Silicon Graphics, Inc.
  5.  * HylaFAX is a trademark of Silicon Graphics
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26. #ifndef _InetFaxServer_
  27. #define _InetFaxServer_
  28. #include "HylaFAXServer.h"
  29. extern "C" {
  30. #include <netinet/in.h>
  31. }
  32. #include "Socket.h"
  33. struct hostent;
  34. class InetFaxServer : public HylaFAXServer {
  35. protected:
  36.     Socket::Address ctrl_addr; // local address of control
  37.     Socket::Address peer_addr; // remote address of control
  38.     Socket::Address data_source; // source of data connection
  39.     Socket::Address data_dest; // destination of data connection
  40.     Socket::Address pasv_addr; // local end of passive connections
  41.     bool usedefault; // for data transfers
  42.     /*
  43.      * Timeout intervals for retrying connections
  44.      * to hosts that don't accept PORT cmds.
  45.      */
  46.     int swaitmax; // wait at most 90 seconds
  47.     int swaitint; // interval between retries
  48.     bool isLocalDomain(const fxStr& h);
  49.     bool checkHostIdentity(const char* hostname);
  50.     void setupNetwork(int fd);
  51.     void handleUrgentData(void);
  52.     void passiveCmd(void);
  53.     static void sigURG(int);
  54.     static void sigPIPE(int);
  55.     virtual void initServer(void);
  56.     void netStatus(FILE*);
  57.     void printaddr(FILE*, const char* leader, const struct sockaddr_in& sin);
  58.     bool hostPort();
  59.     void portCmd(Token);
  60.     bool dataConnect(void);
  61.     FILE* getDataSocket(const char* mode);
  62.     FILE* openDataConn(const char* mode, int& code);
  63.     void lostConnection(void);
  64.     static InetFaxServer* _instance;
  65. public:
  66.     InetFaxServer();
  67.     virtual ~InetFaxServer();
  68.     static InetFaxServer& instance();
  69.     virtual void open(void);
  70. };
  71. #include "SuperServer.h"
  72. class InetSuperServer : public SuperServer {
  73. private:
  74.     fxStr port;
  75.     /*
  76.      * The address to bind the port on.
  77.      */
  78.     const char *bindaddress;
  79.     const char *addressfamily;
  80. protected:
  81.     bool startServer(void);
  82.     HylaFAXServer* newChild(void);
  83. public:
  84.     InetSuperServer(const char* port, int backlog = 5);
  85.     ~InetSuperServer();
  86.     void setBindAddress(const char *bindaddress = NULL);
  87.     void setAddressFamily(const char *bindaddress = NULL);
  88. };
  89. #endif /* _InetFaxServer_ */