]> git.vomp.tv Git - vompclient.git/blob - dsock.h
Completion of move recording code. Fixes for dir counts, other bugs.
[vompclient.git] / dsock.h
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef DSOCK_H
22 #define DSOCK_H
23
24 #ifndef WIN32
25 #include <netinet/in.h>
26 #include <netdb.h>
27 #include <sys/socket.h>
28 #include <unistd.h>
29 #include <arpa/inet.h>
30 #include <sys/time.h>
31 #define SOCKET_ERROR 0
32 #else
33 #include <winsock2.h>
34 #include <Ws2tcpip.h>
35 #include <sys/timeb.h>
36 #endif
37
38 #include <sys/types.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <errno.h>
43 #include "defines.h"
44
45 #define MAXBUFLEN 2000
46
47 class DatagramSocket
48 {
49   public:
50     DatagramSocket(short);             // port
51     ~DatagramSocket();
52     static DatagramSocket* getInstance(void);
53     int init();
54     void shutdown();
55     unsigned char waitforMessage(unsigned char); // int =0-block =1-new wait =2-continue wait
56     int getDataLength(void) const;
57     char *getData(void);               // returns a pointer to the data
58     char *getFromIPA(void);            // returns a pointer to from IP address
59     short getFromPort(void) const;
60     void send(char *, short, char *, int); // send wants: IP Address ddn style, port,
61                                            // data, length of data
62   private:
63     bool initted;
64     ULONG getIPNumber(ULONG num);
65     static ULONG iterate_ip;
66     const static char DSOCKDEBUG = 0;
67     static DatagramSocket* theInstance;
68     int socketnum;                  // Socket descriptor
69     short myPort;                   // My port number
70     struct sockaddr_in myAddr;      // My address
71     struct sockaddr_in theirAddr;   // User address
72     socklen_t addrlen;              // length of sockaddr struct
73     char buf[MAXBUFLEN];            // main data buffer
74     char fromIPA[20];               // from string (ip address)
75     short fromPort;                 // which port user sent on
76     int mlength;                    // length of message
77     struct timeval tv;
78     fd_set readfds;
79 };
80
81 #endif