delete check_sum function and moved its logic inside tcp_syn #13
Loading…
Reference in New Issue
No description provided.
Delete Branch "my_tcp_syn"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
1896e45747
toc3355c7ca8
@ -494,2 +462,4 @@
uint8_t *checksum_byte_ptr;
int checksum_len;
// === Инициализация переменных ===
Число объявленных и инициализированных переменных должно совпадать
@ -550,0 +523,4 @@
// Встроенный расчет контрольной суммы
checksum_ptr = (uint16_t *)temp_buf;
checksum_sum = 0;
checksum_len = sizeof(temp_buf);
checksum_ptr, checksum_sum, checksum_len необходимо инициализировать сначала
Они инициализированы на строке 459
New commits pushed, approval review dismissed automatically according to repository settings