| 1246 | } |
| 1247 | |
| 1248 | int Server::Start(const butil::EndPoint& endpoint, const ServerOptions* opt) { |
| 1249 | return StartInternal( |
| 1250 | endpoint, PortRange(endpoint.port, endpoint.port), opt); |
| 1251 | } |
| 1252 | |
| 1253 | int Server::Start(const char* ip_port_str, const ServerOptions* opt) { |
| 1254 | butil::EndPoint point; |