netcode icon indicating copy to clipboard operation
netcode copied to clipboard

A protocol for secure client/server connections over UDP

Results 2 netcode issues
Sort by recently updated
recently updated
newest added

Just a minor issue I ran into: `netcode_generate_connect_token()` and `netcode_generate_connect_token_private()` assert on `user_data`, but the latter checks for a null pointer, so the asserts can possibly be removed.

I've put the server code in a Cloud VPS with IP Address: aaa.aaa.a.aaa : (base) root@WorldMap:~/netcodeServer# cat CMakeLists.txt cmake_minimum_required(VERSION 3.15...3.31) project(NetCodeServer) include(CMakePrintHelpers) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) include(FetchContent) # https://github.com/robinlinden/libsodium-cmake?tab=readme-ov-file#using-in-your-project #...