mirror of
https://github.com/hufrea/byedpi.git
synced 2024-11-20 04:22:29 +00:00
27 lines
528 B
C
27 lines
528 B
C
#ifndef DESYNC_H
|
|
#define DESYNC_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <winsock2.h>
|
|
#else
|
|
#include <sys/socket.h>
|
|
#endif
|
|
|
|
ssize_t desync(int sfd, char *buffer, size_t bfsize, ssize_t n, ssize_t offset, struct sockaddr *dst, int dp_c);
|
|
|
|
ssize_t desync_udp(int sfd, char *buffer, size_t bfsize, ssize_t n, struct sockaddr *dst, int dp_c);
|
|
|
|
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
|