client handshake tests, errors

This commit is contained in:
NikVolf
2016-04-12 07:13:31 +03:00
parent edba351335
commit a8bd7d07df
3 changed files with 23 additions and 6 deletions

View File

@@ -39,9 +39,12 @@ pub trait IpcConfig {
}
}
#[derive(Debug)]
pub enum Error {
UnkownSystemCall,
ClientUnsupported,
RemoteServiceUnsupported,
HandshakeFailed,
}
pub trait IpcInterface<T> where T: IpcConfig {