-
Notifications
You must be signed in to change notification settings - Fork 0
/
TCPReaderWriterClient.h
60 lines (53 loc) · 1.77 KB
/
TCPReaderWriterClient.h
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
#pragma once
/* end of inma once */
/*
* Copyright (C) 2010,2011,2012,2013 by Jonathan Naylor G4KLX
* Copyright (C) 2019 by Thomas A. Early N7TAE
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <netdb.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <errno.h>
#include <string>
#include <thread>
#include <chrono>
class CTCPReaderWriterClient
{
public:
CTCPReaderWriterClient(const std::string &address, int family, const std::string &port);
CTCPReaderWriterClient();
~CTCPReaderWriterClient();
bool Open(const std::string &address, int family, const std::string &port);
bool Open();
int ReadExact(unsigned char *buffer, const unsigned int length);
int Read(unsigned char *buffer, const unsigned int length);
int ReadLine(std::string &line);
bool Write(const unsigned char* buffer, const unsigned int length);
bool WriteLine(const std::string &line);
int GetFD() { return m_fd; }
void Close();
private:
std::string m_address;
int m_family;
std::string m_port;
int m_fd;
};