From b1ddeebbd5a304e2e50f70af59120f644cd16b9b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 6 Dec 2023 21:06:51 -0600 Subject: [PATCH] Update: Add missing documentation on status code from f_socket_connect(). --- level_0/f_socket/c/socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/level_0/f_socket/c/socket.h b/level_0/f_socket/c/socket.h index a49e8d1..36ec320 100644 --- a/level_0/f_socket/c/socket.h +++ b/level_0/f_socket/c/socket.h @@ -268,6 +268,7 @@ extern "C" { * F_file_descriptor (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_network_reach_not (with error bit) if the network is unreachable. + * F_parameter (with error bit) if a parameter is invalid. * F_progress (with error bit) if if a non-blocking connection cannot be completed immediately. * F_prohibited (with error bit) if the file system does not permit this operation. * F_protocol_not (with error bit) if the given protocol is unknown or is unsupported. -- 1.8.3.1