From b457fec36399c1f7de093d5e92bb4fa453b79c86 Mon Sep 17 00:00:00 2001 From: Jakub Sławiński Date: Sun, 5 Feb 2006 15:14:03 +0100 Subject: v0.8 - Fixed: infinite loop after buffering message - Fixed: corrupt packets after closing connections in the stopped state - Fixed: bug in mapping user numbers between afclient and afserver - Fixed: premature close of the service connection - Fixed: invalid buffering when the connection is closing - Added: Multiple tunnels in one afclient<->afserver connection --- src/file_server.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/file_server.c') 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 #include +/* + * 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) { -- cgit v1.1