From fd7ae85b7276565cab0815d538d95caf97ca8eba Mon Sep 17 00:00:00 2001 From: AM-Shafin Date: Mon, 22 Jun 2026 16:08:03 +0200 Subject: [PATCH 1/5] Added DISABLE_DYNAMIC_RATE_LIMITING compilation toggle --- src/process_packets.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/process_packets.c b/src/process_packets.c index 0b91029..4b590ed 100644 --- a/src/process_packets.c +++ b/src/process_packets.c @@ -271,6 +271,7 @@ static inline struct SwiftNetPacketSending* get_packet_sending(struct SwiftNetHa return result; } +#ifndef DISABLE_DYNAMIC_RATE_LIMITING static inline void signal_delay_change(const enum PacketDelayUpdateStatus status, const struct ip* restrict const ip_header, const uint16_t source_port, const uint16_t destination_port, const struct ether_header* const eth_hdr, const struct SwiftNetNetworkData* const net_data) { struct ip send_server_info_ip_header; struct SwiftNetPacketInfo packet_info_new; @@ -306,6 +307,7 @@ static inline void signal_delay_change(const enum PacketDelayUpdateStatus status SWIFTNET_SEND_PACKET(net_data, buffer, sizeof(buffer)); } +#endif struct PacketQueueNode* wait_for_next_packet(struct PacketQueue* const packet_queue) { struct PacketQueueNode* node_to_process; @@ -873,6 +875,7 @@ static inline void swiftnet_process_packets( goto next_packet; } else { + #ifndef DISABLE_DYNAMIC_RATE_LIMITING uint32_t new_packets; uint32_t new_packets_validated; float ratio; @@ -894,6 +897,7 @@ static inline void swiftnet_process_packets( pending_message->last_index_checked = packet_info.chunk_index; } } + #endif memcpy(pending_message->packet_data_start + (chunk_data_size * packet_info.chunk_index), packet_data, bytes_to_write); From 46d0e4f96c52b862c6b29de89d31d98ef7769c4a Mon Sep 17 00:00:00 2001 From: AM-Shafin Date: Mon, 22 Jun 2026 22:53:08 +0200 Subject: [PATCH 2/5] Fix: usleep rate limiter, block delay updates, and wrap struct tracker --- src/process_packets.c | 2 ++ src/send_packet.c | 2 ++ src/swift_net.h | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/process_packets.c b/src/process_packets.c index 4b590ed..007ce2a 100644 --- a/src/process_packets.c +++ b/src/process_packets.c @@ -644,6 +644,7 @@ static inline void swiftnet_process_packets( } case PACKET_DELAY_UPDATE: { + #ifndef DISABLE_DYNAMIC_RATE_LIMITING enum PacketDelayUpdateStatus* status; struct SwiftNetPacketSending* target_packet_sending; uint32_t current_delay; @@ -667,6 +668,7 @@ static inline void swiftnet_process_packets( goto next_packet; } + #endif default: break; } diff --git a/src/send_packet.c b/src/send_packet.c index 509dcec..5bc714c 100644 --- a/src/send_packet.c +++ b/src/send_packet.c @@ -366,7 +366,9 @@ inline void swiftnet_send_packet( memcpy(buffer_header_location, temp_data_buffer, prepend_size + PACKET_HEADER_SIZE); + #ifndef DISABLE_DYNAMIC_RATE_LIMITING usleep(atomic_load_explicit(&new_packet_sending->current_send_delay, memory_order_acquire)); + #endif } } } else { diff --git a/src/swift_net.h b/src/swift_net.h index 4ef3a68..94607f8 100644 --- a/src/swift_net.h +++ b/src/swift_net.h @@ -126,8 +126,10 @@ struct SwiftNetPendingMessage { uint8_t* packet_data_start; uint32_t chunks_received_length; uint32_t chunks_received_number; +#ifndef DISABLE_DYNAMIC_RATE_LIMITING uint32_t last_index_checked; uint32_t last_chunks_received_number; +#endif uint16_t source_port; uint16_t packet_id; bool sending_lost_packets; From 3cca61916d6de69346d71e9b6d939438cd8bf398 Mon Sep 17 00:00:00 2001 From: AM-Shafin Date: Tue, 23 Jun 2026 22:41:18 +0200 Subject: [PATCH 3/5] Wrap other dynamic rate limiting code with DISABLE_DYNAMIC_RATE_LIMITING --- build/build.log | 532 +++++++++++++++++++++++++++++++++++++++ build/build_disabled.log | 532 +++++++++++++++++++++++++++++++++++++++ src/process_packets.c | 8 +- src/send_packet.c | 6 +- src/swift_net.h | 12 +- 5 files changed, 1082 insertions(+), 8 deletions(-) create mode 100644 build/build.log create mode 100644 build/build_disabled.log diff --git a/build/build.log b/build/build.log new file mode 100644 index 0000000..41c656e --- /dev/null +++ b/build/build.log @@ -0,0 +1,532 @@ +-- The C compiler identification is GNU 13.3.0 +-- The CXX compiler identification is GNU 13.3.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- No sanitizer enabled +Internal Testing Enabled +using linking option: -lpcap +-- Configuring done (0.3s) +-- Generating done (0.0s) +-- Build files have been written to: /home/shark/Codes/Projects/SwiftNet/build +[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_swiftnet.c.o +[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/send_packet.c.o +[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/generic_functions.c.o +[ 10%] Building C object CMakeFiles/swiftnet.dir/initialize_swiftnet.c.o +[ 14%] Building C object CMakeFiles/swiftnet.dir/send_packet.c.o +[ 14%] Building C object CMakeFiles/swiftnet.dir/generic_functions.c.o +[ 10%] Building C object CMakeFiles/swiftnet.dir/handle_packets.c.o +[ 16%] Building C object CMakeFiles/swiftnet_shared.dir/handle_packets.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 18%] Building C object CMakeFiles/swiftnet.dir/initialize_client_connection.c.o +[ 20%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_client_connection.c.o +[ 22%] Building C object CMakeFiles/swiftnet.dir/initialize_server.c.o +[ 25%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_server.c.o +[ 27%] Building C object CMakeFiles/swiftnet.dir/cleanup_connection.c.o +[ 29%] Building C object CMakeFiles/swiftnet.dir/process_packets.c.o +[ 31%] Building C object CMakeFiles/swiftnet.dir/execute_packet_callback.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 33%] Building C object CMakeFiles/swiftnet.dir/packet_buffer.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 35%] Building C object CMakeFiles/swiftnet.dir/manipulate_debug_flags.c.o +[ 37%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_connection.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 39%] Building C object CMakeFiles/swiftnet.dir/cleanup_swiftnet.c.o +[ 41%] Building C object CMakeFiles/swiftnet.dir/make_response.c.o +[ 43%] Building C object CMakeFiles/swiftnet.dir/memory_cleanup_background_service.c.o +[ 45%] Building C object CMakeFiles/swiftnet_shared.dir/process_packets.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 47%] Building C object CMakeFiles/swiftnet.dir/make_request.c.o +[ 50%] Building C object CMakeFiles/swiftnet_shared.dir/execute_packet_callback.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 52%] Building C object CMakeFiles/swiftnet.dir/internal/get_mtu.c.o +[ 54%] Building C object CMakeFiles/swiftnet_shared.dir/packet_buffer.c.o +[ 56%] Building C object CMakeFiles/swiftnet_shared.dir/manipulate_debug_flags.c.o +[ 58%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_swiftnet.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +[ 60%] Building C object CMakeFiles/swiftnet.dir/internal/get_default_interface_and_mac.c.o +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 62%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_allocator.c.o +[ 64%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_vector.c.o +[ 66%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_hashmap.c.o +[ 68%] Building C object CMakeFiles/swiftnet.dir/internal/check_existing_listener.c.o +[ 70%] Building C object CMakeFiles/swiftnet_shared.dir/make_response.c.o +[ 72%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_send.c.o +[ 75%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_open.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 77%] Building C object CMakeFiles/swiftnet_shared.dir/memory_cleanup_background_service.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 79%] Building C object CMakeFiles/swiftnet_shared.dir/make_request.c.o +[ 81%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_mtu.c.o +[ 83%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_default_interface_and_mac.c.o +[ 85%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_vector.c.o +[ 87%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_allocator.c.o +[ 91%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_hashmap.c.o +[ 89%] Linking C static library output/libswiftnet.a +[ 93%] Building C object CMakeFiles/swiftnet_shared.dir/internal/check_existing_listener.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 95%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_send.c.o +[ 97%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_open.c.o +[ 97%] Built target swiftnet +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[100%] Linking C shared library output/libswiftnet.so +[100%] Built target swiftnet_shared diff --git a/build/build_disabled.log b/build/build_disabled.log new file mode 100644 index 0000000..f52f7c0 --- /dev/null +++ b/build/build_disabled.log @@ -0,0 +1,532 @@ +-- The C compiler identification is GNU 13.3.0 +-- The CXX compiler identification is GNU 13.3.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: /usr/bin/cc - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: /usr/bin/c++ - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- No sanitizer enabled +Internal Testing Enabled +using linking option: -lpcap +-- Configuring done (0.3s) +-- Generating done (0.0s) +-- Build files have been written to: /home/shark/Codes/Projects/SwiftNet/build +[ 2%] Building C object CMakeFiles/swiftnet_shared.dir/send_packet.c.o +[ 4%] Building C object CMakeFiles/swiftnet.dir/send_packet.c.o +[ 6%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_swiftnet.c.o +[ 8%] Building C object CMakeFiles/swiftnet_shared.dir/generic_functions.c.o +[ 12%] Building C object CMakeFiles/swiftnet.dir/initialize_swiftnet.c.o +[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/handle_packets.c.o +[ 14%] Building C object CMakeFiles/swiftnet.dir/handle_packets.c.o +[ 16%] Building C object CMakeFiles/swiftnet.dir/generic_functions.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, + from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 18%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_client_connection.c.o +[ 20%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_server.c.o +[ 22%] Building C object CMakeFiles/swiftnet.dir/initialize_client_connection.c.o +[ 25%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_connection.c.o +[ 27%] Building C object CMakeFiles/swiftnet_shared.dir/process_packets.c.o +[ 29%] Building C object CMakeFiles/swiftnet_shared.dir/execute_packet_callback.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 31%] Building C object CMakeFiles/swiftnet_shared.dir/packet_buffer.c.o +[ 33%] Building C object CMakeFiles/swiftnet_shared.dir/manipulate_debug_flags.c.o +[ 35%] Building C object CMakeFiles/swiftnet.dir/initialize_server.c.o +[ 37%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_swiftnet.c.o +[ 39%] Building C object CMakeFiles/swiftnet_shared.dir/make_response.c.o +[ 41%] Building C object CMakeFiles/swiftnet.dir/cleanup_connection.c.o +[ 43%] Building C object CMakeFiles/swiftnet.dir/process_packets.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +[ 45%] Building C object CMakeFiles/swiftnet.dir/execute_packet_callback.c.o +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 47%] Building C object CMakeFiles/swiftnet.dir/packet_buffer.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +[ 50%] Building C object CMakeFiles/swiftnet.dir/manipulate_debug_flags.c.o +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 52%] Building C object CMakeFiles/swiftnet_shared.dir/memory_cleanup_background_service.c.o +[ 54%] Building C object CMakeFiles/swiftnet.dir/cleanup_swiftnet.c.o +[ 56%] Building C object CMakeFiles/swiftnet.dir/make_response.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 58%] Building C object CMakeFiles/swiftnet.dir/memory_cleanup_background_service.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 60%] Building C object CMakeFiles/swiftnet_shared.dir/make_request.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 62%] Building C object CMakeFiles/swiftnet.dir/make_request.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 64%] Building C object CMakeFiles/swiftnet.dir/internal/get_mtu.c.o +[ 66%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_mtu.c.o +[ 68%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_default_interface_and_mac.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 70%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_allocator.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 72%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_vector.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 75%] Building C object CMakeFiles/swiftnet_shared.dir/internal/check_existing_listener.c.o +[ 77%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_hashmap.c.o +[ 79%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_send.c.o +[ 81%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_open.c.o +[ 83%] Building C object CMakeFiles/swiftnet.dir/internal/get_default_interface_and_mac.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 85%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_allocator.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 87%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_vector.c.o +[ 89%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_hashmap.c.o +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[ 91%] Building C object CMakeFiles/swiftnet.dir/internal/check_existing_listener.c.o +[ 93%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_send.c.o +[ 95%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_open.c.o +[ 97%] Linking C shared library output/libswiftnet.so +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); + | ^~~~~~~~ + | crc32 +/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] + 122 | crc = __crc32b(crc, *ptr); + | ^~~~~~~~ + | crc32 +[100%] Linking C static library output/libswiftnet.a +[100%] Built target swiftnet_shared +[100%] Built target swiftnet diff --git a/src/process_packets.c b/src/process_packets.c index 007ce2a..68d8762 100644 --- a/src/process_packets.c +++ b/src/process_packets.c @@ -234,9 +234,11 @@ static inline struct SwiftNetPendingMessage* create_new_pending_message(struct S .packet_info = *packet_info, .packet_data_start = allocated_memory, .chunks_received_number = 0x00, + #ifndef DISABLE_DYNAMIC_RATE_LIMITING .last_index_checked = 0, - .sending_lost_packets = false, .last_chunks_received_number = 0, + #endif + .sending_lost_packets = false, .chunks_received_length = chunks_received_byte_size, .chunks_received = calloc(chunks_received_byte_size, 1), .packet_id = packet_id, @@ -642,9 +644,9 @@ static inline void swiftnet_process_packets( goto next_packet; } + #ifndef DISABLE_DYNAMIC_RATE_LIMITING case PACKET_DELAY_UPDATE: { - #ifndef DISABLE_DYNAMIC_RATE_LIMITING enum PacketDelayUpdateStatus* status; struct SwiftNetPacketSending* target_packet_sending; uint32_t current_delay; @@ -668,7 +670,7 @@ static inline void swiftnet_process_packets( goto next_packet; } - #endif + #endif default: break; } diff --git a/src/send_packet.c b/src/send_packet.c index 5bc714c..77a8f52 100644 --- a/src/send_packet.c +++ b/src/send_packet.c @@ -308,7 +308,9 @@ inline void swiftnet_send_packet( .packet_id = packet_id, }; + #ifndef DISABLE_DYNAMIC_RATE_LIMITING atomic_store_explicit(&new_packet_sending->current_send_delay, 50, memory_order_release); + #endif atomic_store_explicit(&new_packet_sending->updated, NO_UPDATE, memory_order_release); hashmap_insert(key_data_mem, sizeof(uint16_t), new_packet_sending, packets_sending); @@ -366,9 +368,9 @@ inline void swiftnet_send_packet( memcpy(buffer_header_location, temp_data_buffer, prepend_size + PACKET_HEADER_SIZE); - #ifndef DISABLE_DYNAMIC_RATE_LIMITING + #ifndef DISABLE_DYNAMIC_RATE_LIMITING usleep(atomic_load_explicit(&new_packet_sending->current_send_delay, memory_order_acquire)); - #endif + #endif } } } else { diff --git a/src/swift_net.h b/src/swift_net.h index 94607f8..78a00d1 100644 --- a/src/swift_net.h +++ b/src/swift_net.h @@ -54,18 +54,22 @@ enum PacketType { REQUEST_INFORMATION = 0x02, SEND_LOST_PACKETS_REQUEST = 0x03, SEND_LOST_PACKETS_RESPONSE = 0x04, - SUCCESSFULLY_RECEIVED_PACKET = 0x05, + SUCCESSFULLY_RECEIVED_PACKET = 0x05, + #ifndef DISABLE_DYNAMIC_RATE_LIMITING PACKET_DELAY_UPDATE = 0x06, + #endif #ifdef SWIFT_NET_REQUESTS REQUEST = 0x07, RESPONSE = 0x08, #endif }; +#ifndef DISABLE_DYNAMIC_RATE_LIMITING enum PacketDelayUpdateStatus { LOWER_DELAY, INCREASE_DELAY }; +#endif #define PACKET_INFO_ID_NONE 0xFFFF @@ -126,10 +130,10 @@ struct SwiftNetPendingMessage { uint8_t* packet_data_start; uint32_t chunks_received_length; uint32_t chunks_received_number; -#ifndef DISABLE_DYNAMIC_RATE_LIMITING + #ifndef DISABLE_DYNAMIC_RATE_LIMITING uint32_t last_index_checked; uint32_t last_chunks_received_number; -#endif + #endif uint16_t source_port; uint16_t packet_id; bool sending_lost_packets; @@ -158,7 +162,9 @@ enum PacketSendingUpdated { struct SwiftNetPacketSending { uint32_t* lost_chunks; _Atomic enum PacketSendingUpdated updated; + #ifndef DISABLE_DYNAMIC_RATE_LIMITING _Atomic uint32_t current_send_delay; + #endif uint32_t lost_chunks_size; uint16_t packet_id; _Atomic bool locked; From 3bbd074733efcad09e6ba8b3a85fa721bc25f78d Mon Sep 17 00:00:00 2001 From: DrkShark <91430897+AM-Shafin@users.noreply.github.com> Date: Tue, 23 Jun 2026 23:39:47 +0200 Subject: [PATCH 4/5] Delete build/build.log Deleted mistakenly uploaded build.log file --- build/build.log | 532 ------------------------------------------------ 1 file changed, 532 deletions(-) delete mode 100644 build/build.log diff --git a/build/build.log b/build/build.log deleted file mode 100644 index 41c656e..0000000 --- a/build/build.log +++ /dev/null @@ -1,532 +0,0 @@ --- The C compiler identification is GNU 13.3.0 --- The CXX compiler identification is GNU 13.3.0 --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working C compiler: /usr/bin/cc - skipped --- Detecting C compile features --- Detecting C compile features - done --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Check for working CXX compiler: /usr/bin/c++ - skipped --- Detecting CXX compile features --- Detecting CXX compile features - done --- No sanitizer enabled -Internal Testing Enabled -using linking option: -lpcap --- Configuring done (0.3s) --- Generating done (0.0s) --- Build files have been written to: /home/shark/Codes/Projects/SwiftNet/build -[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_swiftnet.c.o -[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/send_packet.c.o -[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/generic_functions.c.o -[ 10%] Building C object CMakeFiles/swiftnet.dir/initialize_swiftnet.c.o -[ 14%] Building C object CMakeFiles/swiftnet.dir/send_packet.c.o -[ 14%] Building C object CMakeFiles/swiftnet.dir/generic_functions.c.o -[ 10%] Building C object CMakeFiles/swiftnet.dir/handle_packets.c.o -[ 16%] Building C object CMakeFiles/swiftnet_shared.dir/handle_packets.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 18%] Building C object CMakeFiles/swiftnet.dir/initialize_client_connection.c.o -[ 20%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_client_connection.c.o -[ 22%] Building C object CMakeFiles/swiftnet.dir/initialize_server.c.o -[ 25%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_server.c.o -[ 27%] Building C object CMakeFiles/swiftnet.dir/cleanup_connection.c.o -[ 29%] Building C object CMakeFiles/swiftnet.dir/process_packets.c.o -[ 31%] Building C object CMakeFiles/swiftnet.dir/execute_packet_callback.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 33%] Building C object CMakeFiles/swiftnet.dir/packet_buffer.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 35%] Building C object CMakeFiles/swiftnet.dir/manipulate_debug_flags.c.o -[ 37%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_connection.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 39%] Building C object CMakeFiles/swiftnet.dir/cleanup_swiftnet.c.o -[ 41%] Building C object CMakeFiles/swiftnet.dir/make_response.c.o -[ 43%] Building C object CMakeFiles/swiftnet.dir/memory_cleanup_background_service.c.o -[ 45%] Building C object CMakeFiles/swiftnet_shared.dir/process_packets.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 47%] Building C object CMakeFiles/swiftnet.dir/make_request.c.o -[ 50%] Building C object CMakeFiles/swiftnet_shared.dir/execute_packet_callback.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 52%] Building C object CMakeFiles/swiftnet.dir/internal/get_mtu.c.o -[ 54%] Building C object CMakeFiles/swiftnet_shared.dir/packet_buffer.c.o -[ 56%] Building C object CMakeFiles/swiftnet_shared.dir/manipulate_debug_flags.c.o -[ 58%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_swiftnet.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -[ 60%] Building C object CMakeFiles/swiftnet.dir/internal/get_default_interface_and_mac.c.o -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 62%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_allocator.c.o -[ 64%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_vector.c.o -[ 66%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_hashmap.c.o -[ 68%] Building C object CMakeFiles/swiftnet.dir/internal/check_existing_listener.c.o -[ 70%] Building C object CMakeFiles/swiftnet_shared.dir/make_response.c.o -[ 72%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_send.c.o -[ 75%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_open.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 77%] Building C object CMakeFiles/swiftnet_shared.dir/memory_cleanup_background_service.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 79%] Building C object CMakeFiles/swiftnet_shared.dir/make_request.c.o -[ 81%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_mtu.c.o -[ 83%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_default_interface_and_mac.c.o -[ 85%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_vector.c.o -[ 87%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_allocator.c.o -[ 91%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_hashmap.c.o -[ 89%] Linking C static library output/libswiftnet.a -[ 93%] Building C object CMakeFiles/swiftnet_shared.dir/internal/check_existing_listener.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 95%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_send.c.o -[ 97%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_open.c.o -[ 97%] Built target swiftnet -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[100%] Linking C shared library output/libswiftnet.so -[100%] Built target swiftnet_shared From 179e0fd91457cb93ebf812838e26df36879ffc7b Mon Sep 17 00:00:00 2001 From: Morcules Date: Wed, 24 Jun 2026 04:47:57 +0200 Subject: [PATCH 5/5] Removed build_disabled.log --- build/build_disabled.log | 532 --------------------------------------- 1 file changed, 532 deletions(-) delete mode 100644 build/build_disabled.log diff --git a/build/build_disabled.log b/build/build_disabled.log deleted file mode 100644 index f52f7c0..0000000 --- a/build/build_disabled.log +++ /dev/null @@ -1,532 +0,0 @@ --- The C compiler identification is GNU 13.3.0 --- The CXX compiler identification is GNU 13.3.0 --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Check for working C compiler: /usr/bin/cc - skipped --- Detecting C compile features --- Detecting C compile features - done --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Check for working CXX compiler: /usr/bin/c++ - skipped --- Detecting CXX compile features --- Detecting CXX compile features - done --- No sanitizer enabled -Internal Testing Enabled -using linking option: -lpcap --- Configuring done (0.3s) --- Generating done (0.0s) --- Build files have been written to: /home/shark/Codes/Projects/SwiftNet/build -[ 2%] Building C object CMakeFiles/swiftnet_shared.dir/send_packet.c.o -[ 4%] Building C object CMakeFiles/swiftnet.dir/send_packet.c.o -[ 6%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_swiftnet.c.o -[ 8%] Building C object CMakeFiles/swiftnet_shared.dir/generic_functions.c.o -[ 12%] Building C object CMakeFiles/swiftnet.dir/initialize_swiftnet.c.o -[ 10%] Building C object CMakeFiles/swiftnet_shared.dir/handle_packets.c.o -[ 14%] Building C object CMakeFiles/swiftnet.dir/handle_packets.c.o -[ 16%] Building C object CMakeFiles/swiftnet.dir/generic_functions.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_swiftnet.c:9: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/generic_functions.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/handle_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/networking.h:4, - from /home/shark/Codes/Projects/SwiftNet/src/send_packet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 18%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_client_connection.c.o -[ 20%] Building C object CMakeFiles/swiftnet_shared.dir/initialize_server.c.o -[ 22%] Building C object CMakeFiles/swiftnet.dir/initialize_client_connection.c.o -[ 25%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_connection.c.o -[ 27%] Building C object CMakeFiles/swiftnet_shared.dir/process_packets.c.o -[ 29%] Building C object CMakeFiles/swiftnet_shared.dir/execute_packet_callback.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_client_connection.c:15: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 31%] Building C object CMakeFiles/swiftnet_shared.dir/packet_buffer.c.o -[ 33%] Building C object CMakeFiles/swiftnet_shared.dir/manipulate_debug_flags.c.o -[ 35%] Building C object CMakeFiles/swiftnet.dir/initialize_server.c.o -[ 37%] Building C object CMakeFiles/swiftnet_shared.dir/cleanup_swiftnet.c.o -[ 39%] Building C object CMakeFiles/swiftnet_shared.dir/make_response.c.o -[ 41%] Building C object CMakeFiles/swiftnet.dir/cleanup_connection.c.o -[ 43%] Building C object CMakeFiles/swiftnet.dir/process_packets.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/initialize_server.c:13: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/process_packets.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -[ 45%] Building C object CMakeFiles/swiftnet.dir/execute_packet_callback.c.o -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 47%] Building C object CMakeFiles/swiftnet.dir/packet_buffer.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_connection.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -[ 50%] Building C object CMakeFiles/swiftnet.dir/manipulate_debug_flags.c.o -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 52%] Building C object CMakeFiles/swiftnet_shared.dir/memory_cleanup_background_service.c.o -[ 54%] Building C object CMakeFiles/swiftnet.dir/cleanup_swiftnet.c.o -[ 56%] Building C object CMakeFiles/swiftnet.dir/make_response.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/packet_buffer.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/execute_packet_callback.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/manipulate_debug_flags.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 58%] Building C object CMakeFiles/swiftnet.dir/memory_cleanup_background_service.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/cleanup_swiftnet.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 60%] Building C object CMakeFiles/swiftnet_shared.dir/make_request.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_response.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 62%] Building C object CMakeFiles/swiftnet.dir/make_request.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/memory_cleanup_background_service.c:2: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 64%] Building C object CMakeFiles/swiftnet.dir/internal/get_mtu.c.o -[ 66%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_mtu.c.o -[ 68%] Building C object CMakeFiles/swiftnet_shared.dir/internal/get_default_interface_and_mac.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 70%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_allocator.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/make_request.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 72%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_vector.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_mtu.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 75%] Building C object CMakeFiles/swiftnet_shared.dir/internal/check_existing_listener.c.o -[ 77%] Building C object CMakeFiles/swiftnet_shared.dir/internal/datatype_hashmap.c.o -[ 79%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_send.c.o -[ 81%] Building C object CMakeFiles/swiftnet_shared.dir/internal/pcap/pcap_open.c.o -[ 83%] Building C object CMakeFiles/swiftnet.dir/internal/get_default_interface_and_mac.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 85%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_allocator.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/get_default_interface_and_mac.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 87%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_vector.c.o -[ 89%] Building C object CMakeFiles/swiftnet.dir/internal/datatype_hashmap.c.o -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_allocator.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[ 91%] Building C object CMakeFiles/swiftnet.dir/internal/check_existing_listener.c.o -[ 93%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_send.c.o -[ 95%] Building C object CMakeFiles/swiftnet.dir/internal/pcap/pcap_open.c.o -[ 97%] Linking C shared library output/libswiftnet.so -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_vector.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/datatype_hashmap.c:4: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/check_existing_listener.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_send.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -In file included from /home/shark/Codes/Projects/SwiftNet/src/internal/pcap/pcap_open.c:1: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h: In function ‘crc32’: -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:116:15: warning: implicit declaration of function ‘__crc32d’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 116 | crc = __crc32d(crc, *(const uint64_t*)ptr); - | ^~~~~~~~ - | crc32 -/home/shark/Codes/Projects/SwiftNet/src/internal/pcap/../internal.h:122:15: warning: implicit declaration of function ‘__crc32b’; did you mean ‘crc32’? [-Wimplicit-function-declaration] - 122 | crc = __crc32b(crc, *ptr); - | ^~~~~~~~ - | crc32 -[100%] Linking C static library output/libswiftnet.a -[100%] Built target swiftnet_shared -[100%] Built target swiftnet