zapret/tpws/tamper.h

31 lines
715 B
C
Raw Normal View History

2021-03-04 14:30:38 +03:00
#pragma once
#include <stdbool.h>
2023-10-12 12:35:06 +03:00
#include <stdint.h>
2021-03-04 14:30:38 +03:00
#include <sys/types.h>
#define SPLIT_FLAG_DISORDER 0x01
#define SPLIT_FLAG_OOB 0x02
typedef enum
{
UNKNOWN = 0,
HTTP,
TLS
} t_l7proto;
2023-10-26 15:12:32 +03:00
typedef struct
{
// common state
t_l7proto l7proto;
bool bFirstReplyChecked;
bool bTamperInCutoff;
char *hostname;
} t_ctrack;
void tamper_out(t_ctrack *ctrack, uint8_t *segment, size_t segment_buffer_size, size_t *size, size_t *split_pos, uint8_t *split_flags);
void tamper_in(t_ctrack *ctrack, uint8_t *segment, size_t segment_buffer_size, size_t *size);
2023-10-26 15:12:32 +03:00
// connection reset by remote leg
void rst_in(t_ctrack *ctrack);
// local leg closed connection (timeout waiting response ?)
void hup_out(t_ctrack *ctrack);