From ff5bfc9037d6f24083ac229cdb8908b1fb42ae3e Mon Sep 17 00:00:00 2001 From: Vadim Vetrov Date: Sat, 10 Aug 2024 02:55:06 +0300 Subject: [PATCH] Fix fragmentation strategy none Related to #43 --- youtubeUnblock.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/youtubeUnblock.c b/youtubeUnblock.c index 21ad485..4f1cf42 100644 --- a/youtubeUnblock.c +++ b/youtubeUnblock.c @@ -577,8 +577,10 @@ static int process_packet(const struct packet_data packet, struct queue_data qda if (ret < 0) { errno = -ret; perror("raw pack send"); + goto fallback; } - goto fallback; + + goto send_verd; } ret = send_raw_socket(frag2, f2len);