From 54b308af97b91ceabb0a482f325d3a8595b01aa3 Mon Sep 17 00:00:00 2001 From: turret Date: Mon, 18 Dec 2023 16:13:36 -0600 Subject: *: enforce 78 char line limit --- net/net.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'net/net.c') diff --git a/net/net.c b/net/net.c index fada07c..da8680d 100644 --- a/net/net.c +++ b/net/net.c @@ -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; } -- cgit v1.2.3