summaryrefslogtreecommitdiff
path: root/implementation/endpoints/src/virtual_server_endpoint_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/endpoints/src/virtual_server_endpoint_impl.cpp')
-rw-r--r--implementation/endpoints/src/virtual_server_endpoint_impl.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/implementation/endpoints/src/virtual_server_endpoint_impl.cpp b/implementation/endpoints/src/virtual_server_endpoint_impl.cpp
index 30862df..20d40d7 100644
--- a/implementation/endpoints/src/virtual_server_endpoint_impl.cpp
+++ b/implementation/endpoints/src/virtual_server_endpoint_impl.cpp
@@ -24,10 +24,14 @@ void virtual_server_endpoint_impl::start() {
void virtual_server_endpoint_impl::stop() {
}
-bool virtual_server_endpoint_impl::is_connected() const {
+bool virtual_server_endpoint_impl::is_established() const {
return false;
}
+void virtual_server_endpoint_impl::set_established(bool _established) {
+ (void) _established;
+}
+
void virtual_server_endpoint_impl::set_connected(bool _connected) {
(void) _connected;
}