]> git.vomp.tv Git - vompclient.git/blob - udp6.h
Improve connection failure handling
[vompclient.git] / udp6.h
1 /*
2     Copyright 2020 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, see <https://www.gnu.org/licenses/>.
18 */
19
20 #ifndef UDP6_H
21 #define UDP6_H
22
23 #ifndef WIN32
24   #include <sys/socket.h>
25   #include <netinet/in.h>
26 #endif
27
28 #include "defines.h"
29
30 #define MAXBUFLEN 2000
31
32 class UDP6
33 {
34   public:
35     ~UDP6();
36     int init(USHORT port);
37     void shutdown();
38 #ifdef WIN32
39     unsigned char waitforMessage(unsigned char, SOCKET quitPipe = 0); // uchar =0-block =1-new wait =2-continue wait
40 #else
41     unsigned char waitforMessage(unsigned char, int quitPipe = 0); // uchar =0-block =1-new wait =2-continue wait
42 #endif
43     UINT getDataLength() const;
44     const void* getData() const;         // returns a pointer to the data
45     const char* getFromIPA() const;      // returns a pointer to from IP address
46     short getFromPort() const;
47     bool getFromIPisLL() const;
48     bool send(const char *, USHORT, char *, int, bool mcast = false); // send wants: text IP, port, data, length of data, is_mcast
49
50   private:
51     bool initted{};
52     ULONG getIPNumber(ULONG num);
53     ULONG iterate_ip{};
54     int socketnum;                  // Socket descriptor
55     USHORT myPort{};                // My port number
56     struct sockaddr_in6 myAddr;     // My address
57     struct sockaddr_in6 theirAddr;  // User address
58     socklen_t addrlen;              // length of sockaddr struct
59     char buf[MAXBUFLEN];            // main data buffer
60     char fromIPA[40];               // from string (ip address)
61     short fromPort;                 // which port user sent on
62     bool fromIPisLL;                // packet came from a IPv6 link-local address
63     int mlength;                    // length of message
64     struct timeval tv;
65     fd_set readfds;
66 };
67
68 #endif