summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAGaliuzov <AGaliuzov@luxoft.com>2015-07-17 16:21:44 +0300
committerAGaliuzov <AGaliuzov@luxoft.com>2015-07-17 16:21:44 +0300
commitf261a06bbfb133d1662943e3b269906fa1fc0a5a (patch)
treef841d28831047d32be84adfc41d094d07d10b557
parentb983a57adad9b8ea3b9e3e2c53d6a9df62a3e13b (diff)
parentd9ec8969102f02918bf97cb1f407a2c175f8cde0 (diff)
downloadsmartdevicelink-f261a06bbfb133d1662943e3b269906fa1fc0a5a.tar.gz
Merge pull request #162 from LuxoftSDL/hotfix/Fix_sending_OnAppUnregistered_after_wifi_transport_was_disconected
Fixed sending OnAppUnregistered after wifi transport was disconnetcted
-rw-r--r--src/components/transport_manager/src/tcp/tcp_transport_adapter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/transport_manager/src/tcp/tcp_transport_adapter.cc b/src/components/transport_manager/src/tcp/tcp_transport_adapter.cc
index 21a3506da..3998c02ab 100644
--- a/src/components/transport_manager/src/tcp/tcp_transport_adapter.cc
+++ b/src/components/transport_manager/src/tcp/tcp_transport_adapter.cc
@@ -64,7 +64,7 @@ TcpTransportAdapter::TcpTransportAdapter(const uint16_t port)
NULL,
#endif
new TcpConnectionFactory(this),
- new TcpClientListener(this, port, false)) {
+ new TcpClientListener(this, port, true)) {
}
TcpTransportAdapter::~TcpTransportAdapter() {