| 174 | }; |
| 175 | |
| 176 | std::string GlobalExtraOptionsString() { |
| 177 | std::string result; |
| 178 | result.reserve(64); |
| 179 | for (const auto& option : g_extra_options_set) { |
| 180 | result.append(option); |
| 181 | result.append(" "); |
| 182 | } |
| 183 | return result; |
| 184 | } |
| 185 | |
| 186 | void JeControlProfile(Controller* cntl) { |
| 187 | const brpc::URI& uri = cntl->http_request().uri(); |
no test coverage detected