@@ -135,57 +135,6 @@ std::seed_seq random_seed() {
135
135
return std::seed_seq (seed.begin (), seed.end ());
136
136
}
137
137
138
- bool IsHttpRequest (const byte *buffer, size_t size) {
139
- // Check the buffer starts with a valid-looking HTTP method
140
- for (size_t i = 0 ; i < size; ++i) {
141
- char c = static_cast <char >(buffer[i]);
142
- if (i > 0 && c == ' ' )
143
- break ;
144
- else if (i >= 8 || c < ' A' || c > ' Z' )
145
- return false ;
146
- }
147
- return true ;
148
- }
149
-
150
- size_t parseHttpLines (const byte *buffer, size_t size, std::list<string> &lines) {
151
- lines.clear ();
152
- auto begin = reinterpret_cast <const char *>(buffer);
153
- auto end = begin + size;
154
- auto cur = begin;
155
- while (true ) {
156
- auto last = cur;
157
- cur = std::find (cur, end, ' \n ' );
158
- if (cur == end)
159
- return 0 ;
160
- string line (last, cur != begin && *std::prev (cur) == ' \r ' ? std::prev (cur++) : cur++);
161
- if (line.empty ())
162
- break ;
163
- lines.emplace_back (std::move (line));
164
- }
165
-
166
- return cur - begin;
167
- }
168
-
169
- std::multimap<string, string> parseHttpHeaders (const std::list<string> &lines) {
170
- std::multimap<string, string> headers;
171
- for (const auto &line : lines) {
172
- if (size_t pos = line.find_first_of (' :' ); pos != string::npos) {
173
- string key = line.substr (0 , pos);
174
- string value = " " ;
175
- if (size_t subPos = line.find_first_not_of (' ' , pos + 1 ); subPos != string::npos) {
176
- value = line.substr (subPos);
177
- }
178
- std::transform (key.begin (), key.end (), key.begin (),
179
- [](char c) { return std::tolower (c); });
180
- headers.emplace (std::move (key), std::move (value));
181
- } else {
182
- headers.emplace (line, " " );
183
- }
184
- }
185
-
186
- return headers;
187
- }
188
-
189
138
namespace {
190
139
191
140
void thread_set_name_self (const char *name) {
@@ -205,9 +154,9 @@ void thread_set_name_self(const char *name) {
205
154
} // namespace
206
155
207
156
namespace this_thread {
208
- void set_name ( const string &name) {
209
- thread_set_name_self (name.c_str ());
210
- }
211
- }
157
+
158
+ void set_name ( const string &name) { thread_set_name_self (name.c_str ()); }
159
+
160
+ } // namespace this_thread
212
161
213
162
} // namespace rtc::impl::utils
0 commit comments