File: XSocket.h

package info (click to toggle)
postman 2.0-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,036 kB
  • ctags: 3,078
  • sloc: cpp: 31,131; ansic: 1,948; sh: 787; makefile: 285
file content (60 lines) | stat: -rwxr-xr-x 1,521 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
XSocket.h
*/

#ifndef __XSOCKET_H
#define __XSOCKET_H

#include        <stdio.h>
#include        <stdlib.h>
#include        <signal.h>
#include        <unistd.h>
#include        <errno.h>
#include        <fcntl.h>
#include        <string.h>
#include        <sys/types.h>
#include        <sys/un.h>
#include        <sys/socket.h>
#include        <netinet/in.h>
#include        <netdb.h>
#include        <arpa/inet.h>
#include        <strings.h>

#include "Config.h"

#define INVALID_SOCKET    -1
#define ERROR_SOCKET      -1
#define ERROR_SOCKET_PIPE -2

class XSocket
  {
  private:
    int wsock; 
    FILE *fsock;
  public:
    XSocket ();
    XSocket (int awsock);
    virtual ~XSocket ();
    void SetSock (int sock);
    void Close ();
    int getSock (void);
    int do_client_inet (char *host, char *service, int port, int timeout);
    int do_client_unix (char *filesocket);    
    int do_server_inet (int socket_type, u_short port, int *listener);
    int do_server_unix (int socket_type, int *listener);
    void do_server_unix_only_bind (int socket_type, int *listener, char *fn);
    bool Gets (char buf[], int nbytes);
    int Open (char *host, char *service, int port);
    int Puts (const char *buf);
    int Read (char *buf, int nbytes);
    int Write (const char *buf, int nbytes);
    char *Client_name (void);
    int atoport (char *service, char *proto);
    void ignore_pipe(void);
    //Send with timeout
    int Send_TO (const char* buf, int TimeoutSeconds);
  };

#include "Utils.h"
  
#endif