diff options
Diffstat (limited to 'net/net.c')
-rw-r--r-- | net/net.c | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -21,7 +21,8 @@ int net_subsystem(void) void net_get_gateway_url() { - curl_version_info_data *curl_version = curl_version_info(CURLVERSION_NOW); + curl_version_info_data *curl_version = + curl_version_info(CURLVERSION_NOW); const char * const* curl_protocols = curl_version->protocols; int wss_supported = 0; for(int i = 0; curl_protocols[i]; ++i) { @@ -43,14 +44,18 @@ void net_get_gateway_url() close(fd); cJSON *gateway_info = cJSON_ParseWithLength(buf, buf_length); - cJSON *gateway_url_json = cJSON_GetObjectItemCaseSensitive(gateway_info, "url"); - if(!cJSON_IsString(gateway_url_json) || gateway_url_json->valuestring == NULL) { - print(LOG_ERR "net: cannot get gateway url from api (token invalid?)"); + cJSON *gateway_url_json = + cJSON_GetObjectItemCaseSensitive(gateway_info, "url"); + if(!cJSON_IsString(gateway_url_json) || + gateway_url_json->valuestring == NULL) { + print(LOG_ERR "net: cannot get gateway url from api " + "(token invalid?)"); cJSON_Delete(gateway_info); goto assume; } - char *gateway_url = calloc(strlen(gateway_url_json->valuestring) + 1, sizeof(char)); + char *gateway_url = calloc(strlen(gateway_url_json->valuestring) + 1, + sizeof(char)); strcpy(gateway_url, gateway_url_json->valuestring); print(LOG_DEBUG "net: using gateway url %s", gateway_url); @@ -60,7 +65,8 @@ void net_get_gateway_url() assume: print(LOG_DEBUG "net: assuming gateway url wss://gateway.discord.gg"); - gateway_url = calloc(strlen("wss://gateway.discord.gg") + 1, sizeof(char)); + gateway_url = calloc(strlen("wss://gateway.discord.gg") + 1, + sizeof(char)); strcpy(gateway_url, "wss://gateway.discord.gg"); return; } |