mirror of
https://github.com/hufrea/byedpi.git
synced 2025-06-30 18:43:04 +00:00
Merge branch 'hufrea:main' into cmake
This commit is contained in:
commit
d4b5cac7ba
16
desync.c
16
desync.c
@ -11,13 +11,12 @@
|
||||
#include <sys/mman.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
|
||||
#ifndef __linux__
|
||||
#include <netinet/tcp.h>
|
||||
#else
|
||||
#include <sys/sendfile.h>
|
||||
#include <linux/tcp.h>
|
||||
|
||||
#include <sys/syscall.h>
|
||||
|
||||
#define memfd_create(name, flags) syscall(__NR_memfd_create, name, flags)
|
||||
@ -84,24 +83,25 @@ static inline void delay(long ms)
|
||||
void wait_send(int sfd)
|
||||
{
|
||||
for (int i = 0; params.wait_send && i < 500; i++) {
|
||||
struct tcpi tcpi = {};
|
||||
struct tcp_info tcpi = {};
|
||||
socklen_t ts = sizeof(tcpi);
|
||||
|
||||
if (getsockopt(sfd, IPPROTO_TCP,
|
||||
TCP_INFO, (char *)&tcpi, &ts) < 0) {
|
||||
uniperror("getsockopt TCP_INFO");
|
||||
perror("getsockopt TCP_INFO");
|
||||
break;
|
||||
}
|
||||
if (tcpi.state != 1) {
|
||||
LOG(LOG_E, "state: %d\n", tcpi.state);
|
||||
if (tcpi.tcpi_state != 1) {
|
||||
LOG(LOG_E, "state: %d\n", tcpi.tcpi_state);
|
||||
return;
|
||||
}
|
||||
if (ts < sizeof(tcpi)) {
|
||||
size_t s = (char *)&tcpi.tcpi_notsent_bytes - (char *)&tcpi.tcpi_state;
|
||||
if (ts < s) {
|
||||
LOG(LOG_E, "tcpi_notsent_bytes not provided\n");
|
||||
params.wait_send = 0;
|
||||
break;
|
||||
}
|
||||
if (tcpi.notsent_bytes == 0) {
|
||||
if (tcpi.tcpi_notsent_bytes == 0) {
|
||||
return;
|
||||
}
|
||||
LOG(LOG_S, "not sent after %d ms\n", i);
|
||||
|
9
desync.h
9
desync.h
@ -18,13 +18,4 @@ int get_family(struct sockaddr *dst);
|
||||
|
||||
int setttl(int fd, int ttl, int family);
|
||||
|
||||
struct tcpi {
|
||||
uint8_t state;
|
||||
uint8_t r[3];
|
||||
uint32_t rr[5];
|
||||
uint32_t unacked;
|
||||
uint32_t rrr[29];
|
||||
uint32_t notsent_bytes;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
8
error.h
8
error.h
@ -70,10 +70,12 @@ static inline const int unie(int e)
|
||||
#endif
|
||||
|
||||
#define INIT_ADDR_STR(dst) \
|
||||
char ADDR_STR[INET_ADDRSTRLEN + 1]; \
|
||||
char ADDR_STR[INET6_ADDRSTRLEN]; \
|
||||
const char *p = 0; \
|
||||
if (dst.sa.sa_family == AF_INET) \
|
||||
inet_ntop(AF_INET, &dst.in.sin_addr, ADDR_STR, sizeof(ADDR_STR)); \
|
||||
p = inet_ntop(AF_INET, &dst.in.sin_addr, ADDR_STR, sizeof(ADDR_STR)); \
|
||||
else \
|
||||
inet_ntop(AF_INET6, &dst.in6.sin6_addr, ADDR_STR, sizeof(ADDR_STR));
|
||||
p = inet_ntop(AF_INET6, &dst.in6.sin6_addr, ADDR_STR, sizeof(ADDR_STR)); \
|
||||
if (!p) uniperror("inet_ntop");
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user