1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

* modules/proxy/mod_proxy_wstunnel.c (proxyws_set_aysnch_delay):

Fix typo in function name, no functional change.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joe Orton
2020-11-10 08:37:45 +00:00
parent 143a9d5a07
commit 24466f95bb

View File

@@ -423,7 +423,7 @@ static const char * proxyws_set_idle(cmd_parms *cmd, void *conf, const char *val
return NULL;
}
static const char * proxyws_set_aysnch_delay(cmd_parms *cmd, void *conf, const char *val)
static const char * proxyws_set_asynch_delay(cmd_parms *cmd, void *conf, const char *val)
{
proxyws_dir_conf *dconf = conf;
if (ap_timeout_parameter_parse(val, &(dconf->async_delay), "s") != APR_SUCCESS)
@@ -437,7 +437,7 @@ static const command_rec ws_proxy_cmds[] =
RSRC_CONF|ACCESS_CONF,
"timeout for activity in either direction, unlimited by default"),
AP_INIT_TAKE1("ProxyWebsocketAsyncDelay", proxyws_set_aysnch_delay, NULL,
AP_INIT_TAKE1("ProxyWebsocketAsyncDelay", proxyws_set_asynch_delay, NULL,
RSRC_CONF|ACCESS_CONF,
"amount of time to poll before going asynchronous"),
{NULL}