The first client I tested was sending 'upgrade'.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@109447
13f79535-47bb-0310-9956-
ffa450edef68
token_string = apr_pstrdup(r->pool,connection);
token = apr_strtok(token_string,",",&token_state);
- while (token && strcmp(token,"Upgrade")) {
+ while (token && strcasecmp(token,"Upgrade")) {
apr_strtok(NULL,",",&token_state);
}
/* "Connection: Upgrade" header not found, don't do Upgrade */