Compare commits
1 Commits
7358abec80
...
b49ede334f
Author | SHA1 | Date | |
---|---|---|---|
b49ede334f |
@ -149,8 +149,11 @@ pub struct Conn {
|
||||
pub(crate) conn: UserConnTracker,
|
||||
}
|
||||
|
||||
impl Connection {
|
||||
//pub fn send()
|
||||
impl Conn {
|
||||
/// Queue some data to be sent in this connection
|
||||
pub fn send(&mut self, stream: stream::ID, _data: Vec<u8>) {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
||||
/// A single connection and its data
|
||||
|
@ -88,7 +88,7 @@ async fn test_connection_dirsync() {
|
||||
.connect_resolved(dnssec_record, &test_domain, auth::SERVICEID_AUTH)
|
||||
.await
|
||||
{
|
||||
Ok(()) => {}
|
||||
Ok((_, _)) => {}
|
||||
Err(e) => {
|
||||
assert!(false, "Err on client connection: {:?}", e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user