Add dummy disconnect method for Windows connection

This commit is contained in:
Patrick Auernig 2018-04-07 13:27:59 +02:00
parent 06728d21cf
commit 4443423407
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,10 @@ impl Connection for WindowsConnection {
Ok(Self { socket })
}
fn disconnect() -> Result<()> {
Ok(())
}
fn ipc_path() -> PathBuf {
PathBuf::from(r"\\.\pipe\")
}