File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -735,7 +735,7 @@ R"x*x*x(<html>
735
735
}
736
736
737
737
public:
738
- virtual void start () override
738
+ void start () override
739
739
{
740
740
auto server = m_proxy_server.lock ();
741
741
if (!server)
@@ -808,7 +808,7 @@ R"x*x*x(<html>
808
808
}, net::detached);
809
809
}
810
810
811
- virtual void close () override
811
+ void close () override
812
812
{
813
813
if (m_abort)
814
814
return ;
@@ -827,13 +827,13 @@ R"x*x*x(<html>
827
827
m_timer.cancel ();
828
828
}
829
829
830
- virtual void set_tproxy_remote (
830
+ void set_tproxy_remote (
831
831
const net::ip::tcp::endpoint& tproxy_remote) override
832
832
{
833
833
m_tproxy_remote = tproxy_remote;
834
834
}
835
835
836
- virtual size_t connection_id () override
836
+ size_t connection_id () override
837
837
{
838
838
return m_connection_id;
839
839
}
@@ -5188,22 +5188,22 @@ R"x*x*x(<html>
5188
5188
}
5189
5189
5190
5190
private:
5191
- virtual void remove_session (size_t id) override
5191
+ void remove_session (size_t id) override
5192
5192
{
5193
5193
m_clients.erase (id);
5194
5194
}
5195
5195
5196
- virtual size_t num_session () override
5196
+ size_t num_session () override
5197
5197
{
5198
5198
return m_clients.size ();
5199
5199
}
5200
5200
5201
- virtual const proxy_server_option& option () override
5201
+ const proxy_server_option& option () override
5202
5202
{
5203
5203
return m_option;
5204
5204
}
5205
5205
5206
- virtual net::ssl::context& ssl_context () override
5206
+ net::ssl::context& ssl_context () override
5207
5207
{
5208
5208
return m_ssl_srv_context;
5209
5209
}
You can’t perform that action at this time.
0 commit comments