summaryrefslogtreecommitdiff
path: root/src/file_server.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_server.c')
-rw-r--r--src/file_server.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/file_server.c b/src/file_server.c
index 6f5f848..427fb1b 100644
--- a/src/file_server.c
+++ b/src/file_server.c
@@ -30,6 +30,16 @@
#include <limits.h>
#include <ctype.h>
+/*
+ * Function name: parsefile
+ * Description: Parses the server config file.
+ * Arguments: name - the name of the file with client's config
+ * status - the status returned from this function:
+ * 0 - file was parsed successfully
+ * n>0 - there was an error in the n-th line
+ * Returns: Pointer to ServerConfiguration structure.
+ */
+
ServerConfiguration*
parsefile(char* name, int* status)
{