X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=server.c;h=4b088c17f404b6a5da2025b09720f8e72083a2bd;hb=23a1be081ab9e378cba49a23b8ed4d4082b580c1;hp=d5d5d91f10291c708a6faa28c75ae27573a36f49;hpb=70792eeb23451cef1f3a103e0c9515b833f81899;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/server.c b/server.c index d5d5d91..4b088c1 100644 --- a/server.c +++ b/server.c @@ -36,6 +36,7 @@ static void *hSteamHTTP, static u8 steam_symetric_key[ k_nSteamEncryptedAppTicketSymmetricKeyLen ]; static HSteamNetPollGroup client_pollgroup; +#if 0 static void recieve_http( void *callresult, void *context ) { HTTPRequestCompleted_t *result = callresult; @@ -55,6 +56,7 @@ static void recieve_http( void *callresult, void *context ) vg_free( buffer ); SteamAPI_ISteamHTTP_ReleaseHTTPRequest( hSteamHTTP, result->m_hRequest ); } +#endif static u64_steamid get_connection_authsteamid( SteamNetworkingMessage_t *msg ) { @@ -335,7 +337,11 @@ int main( int argc, char *argv[] ) /* TODO: Options to override, ammend, remove etc */ + vg_set_mem_quota( 80*1024*1024 ); + vg_alloc_quota(); + highscores_init( 250000, 10000 ); + if( !highscores_read() ) highscores_create_db(); @@ -424,7 +430,6 @@ int main( int argc, char *argv[] ) } highscores_serialize_all(); - highscores_free(); SteamAPI_ISteamNetworkingSockets_DestroyPollGroup( hSteamNetworkingSockets, client_pollgroup );