-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuxcom.cpp
98 lines (72 loc) · 2.84 KB
/
uxcom.cpp
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
Socle - Socket Library Ecosystem
Copyright (c) 2014, Ales Stibal <[email protected]>, All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3.0 of the License, or (at your option) any later version.
This library 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library.
*/
#include <uxcom.hpp>
UxCom::~UxCom() = default;
// obviously, port is ignored
int UxCom::connect(const char* host, const char* noop_port) {
const char* port = "";
int sfd = ::socket(connect_sock_family, connect_sock_type, 0);
if (sfd == -1) {
_deb("UxCom::connect[%s:%s]: socket[%d]: failed to create socket", host, port, sfd);
return sfd;
}
sockaddr_un server{};
server.sun_family = connect_sock_family;
strncpy(server.sun_path, host, sizeof(server.sun_path)-1);
if (not GLOBAL_IO_BLOCKING()) {
unblock(sfd);
if (::connect(sfd, (struct sockaddr *) &server, sizeof(struct sockaddr_un)) < 0) {
if ( errno == EINPROGRESS ) {
_deb("UxCom::connect[%s:%s]: socket[%d]: connnect errno: EINPROGRESS", host, port, sfd);
} else {
close(sfd);
sfd = 0;
_not("UxCom::connect[%s:%s]: socket[%d]: connnect errno: %s", host, port, sfd, string_error().c_str());
}
}
} else {
if (::connect(sfd, (struct sockaddr *) &server, sizeof(struct sockaddr_un)) != 0) {
close(sfd);
sfd = 0;
}
}
if(sfd == 0) {
_err("UxCom::connect[%s:%s]: socket[%d]: connect failed", host, port, sfd);
} else {
_dum("UxCom::connect[%s:%s]: socket[%d]: connect ok", host, port, sfd);
}
return socket(sfd);
}
int UxCom::bind(short unsigned int port) {
_err("UxCom::bind(int): bind failed, cannot bind to any port number", port);
return -1;
}
int UxCom::bind(const char* name) {
int s;
sockaddr_un server{};
server.sun_family = bind_sock_family;
strncpy(server.sun_path, name, sizeof(server.sun_path)-1);
if ((s = ::socket(bind_sock_family, bind_sock_type, bind_sock_protocol)) == -1) return -129;
so_reuseaddr(s);
if (::bind(s, reinterpret_cast<sockaddr*>(&server), sizeof(server)) == -1) {
::close(s);
return -130;
}
if (listen(s, 10) == -1) {
::close(s);
return -131;
}
return s;
}