forked from kieselsteini/delve
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtcp.c
41 lines (30 loc) · 1.46 KB
/
tcp.c
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
/*
================================================================================
gplaces - a simple terminal Gemini client
Copyright (C) 2022, 2023 Dima Krasner
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 3 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, see <https://www.gnu.org/licenses/>.
================================================================================
*/
static int tcp_read(void *c, void *buffer, int length) {
return (int)recv((int)(intptr_t)c, buffer, (size_t)length, 0);
}
static int tcp_peek(void *c, void *buffer, int length) {
return (int)recv((int)(intptr_t)c, buffer, (size_t)length, MSG_PEEK);
}
static void tcp_close(void *c) {
close((int)(intptr_t)c);
}
static ssize_t sendall(int sockfd, const void *buf, size_t len, int flags) {
ssize_t sent = 0, total;
for (total = 0; total < (ssize_t)len && (sent = send(sockfd, (char *)buf + total, len - total, flags)) > 0; total += sent);
return sent <= 0 ? sent : total;
}