mirror of
https://gitee.com/openharmony/third_party_nghttp2
synced 2024-11-27 18:10:47 +00:00
spdycat: use locale-free strieq instead strcasecmp
This commit is contained in:
parent
f8fcee122a
commit
0be5ac6ffb
@ -43,6 +43,7 @@
|
|||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
#include "spdylay_ssl.h"
|
#include "spdylay_ssl.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
namespace spdylay {
|
namespace spdylay {
|
||||||
|
|
||||||
@ -164,13 +165,13 @@ int Spdylay::submit_request(const std::string& hostport,
|
|||||||
while( i != end ) {
|
while( i != end ) {
|
||||||
const char *key = (*i).first.c_str();
|
const char *key = (*i).first.c_str();
|
||||||
const char *value = (*i).second.c_str();
|
const char *value = (*i).second.c_str();
|
||||||
if ( strcasecmp( key, "accept" ) == 0 ) {
|
if ( util::strieq( key, "accept" ) ) {
|
||||||
nv[POS_ACCEPT*2+1] = value;
|
nv[POS_ACCEPT*2+1] = value;
|
||||||
}
|
}
|
||||||
else if ( strcasecmp( key, "user-agent" ) == 0 ) {
|
else if ( util::strieq( key, "user-agent" ) ) {
|
||||||
nv[POS_USERAGENT*2+1] = value;
|
nv[POS_USERAGENT*2+1] = value;
|
||||||
}
|
}
|
||||||
else if ( strcasecmp( key, "host" ) == 0 ) {
|
else if ( util::strieq( key, "host" ) ) {
|
||||||
nv[POS_HOST*2+1] = value;
|
nv[POS_HOST*2+1] = value;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user