-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from risoflora/custom-hostname-support
Implement custom host name support
- Loading branch information
Showing
11 changed files
with
242 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
# | ||
# Cross-platform library which helps to develop web servers or frameworks. | ||
# | ||
# Copyright (C) 2016-2021 Silvio Clecio <[email protected]> | ||
# Copyright (C) 2016-2024 Silvio Clecio <[email protected]> | ||
# | ||
# Sagui library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
|
@@ -1163,13 +1163,6 @@ CLANG_DATABASE_PATH = | |
|
||
ALPHABETICAL_INDEX = YES | ||
|
||
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in | ||
# which the alphabetical index list will be split. | ||
# Minimum value: 1, maximum value: 20, default value: 5. | ||
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. | ||
|
||
COLS_IN_ALPHA_INDEX = 5 | ||
|
||
# In case all classes in a project start with a common prefix, all classes will | ||
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag | ||
# can be used to specify a prefix (or a list of prefixes) that should be ignored | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
# | ||
# Cross-platform library which helps to develop web servers or frameworks. | ||
# | ||
# Copyright (C) 2016-2020 Silvio Clecio <[email protected]> | ||
# Copyright (C) 2016-2024 Silvio Clecio <[email protected]> | ||
# | ||
# Sagui library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
|
@@ -65,9 +65,6 @@ list( | |
${SG_SOURCE_DIR}/sg_httpreq.c | ||
${SG_SOURCE_DIR}/sg_httpres.c | ||
${SG_SOURCE_DIR}/sg_httpsrv.c) | ||
if(NOT HAVE_INET_NTOP) | ||
list(APPEND SG_C_SOURCE ${SG_SOURCE_DIR}/inet_ntop.c) | ||
endif() | ||
if(SG_PATH_ROUTING) | ||
list(APPEND SG_C_SOURCE ${SG_SOURCE_DIR}/sg_entrypoint.c | ||
${SG_SOURCE_DIR}/sg_entrypoints.c ${SG_SOURCE_DIR}/sg_routes.c | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.