This commit is contained in:
snarmph 2021-09-30 17:50:12 +02:00
parent efd4d9c750
commit 449e9d726f
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ add_library(Colla STATIC
) )
IF (WIN32) IF (WIN32)
target_link_libraries(Common ws2_32.lib) target_link_libraries(Colla ws2_32.lib)
ELSE() ELSE()
# posix # posix
ENDIF() ENDIF()

2
http.h
View file

@ -56,7 +56,7 @@ typedef struct {
uint8_t minor; uint8_t minor;
} http_version_t; } http_version_t;
// transaltes a http_version_t to a single readable number (e.g. 1.1 -> 11, 1.0 -> 10, etc) // translates a http_version_t to a single readable number (e.g. 1.1 -> 11, 1.0 -> 10, etc)
int httpVerNumber(http_version_t ver); int httpVerNumber(http_version_t ver);
typedef struct { typedef struct {