connect pipe closed signal to backend's

This commit is contained in:
itsmattkc 2024-10-14 12:05:02 -07:00
parent 42223f55e9
commit 861a6560fe

View file

@ -163,6 +163,7 @@ int BackendViaInternalPipe::initInternal()
{ {
m_pipe = new BackendPipe(m_wirelessInterface, this); m_pipe = new BackendPipe(m_wirelessInterface, this);
connect(m_pipe, &BackendPipe::pipeAvailable, this, &BackendViaInternalPipe::ready); connect(m_pipe, &BackendPipe::pipeAvailable, this, &BackendViaInternalPipe::ready);
connect(m_pipe, &BackendPipe::closed, this, &BackendViaInternalPipe::closed);
m_pipe->start(); m_pipe->start();
return 0; return 0;
} }