Add unknown protocol error
This commit is contained in:
parent
8a96de9666
commit
fc7a3038bd
@ -89,7 +89,9 @@ async fn process(
|
|||||||
|
|
||||||
debug!("Bytes read: {:?} write: {:?}", bytes_tx, bytes_rx);
|
debug!("Bytes read: {:?} write: {:?}", bytes_tx, bytes_rx);
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {
|
||||||
|
error!("Reached unknown protocol: {:?}", custom.protocol);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -108,7 +108,9 @@ async fn process(
|
|||||||
|
|
||||||
debug!("Bytes read: {:?} write: {:?}", bytes_tx, bytes_rx);
|
debug!("Bytes read: {:?} write: {:?}", bytes_tx, bytes_rx);
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {
|
||||||
|
error!("Reached unknown protocol: {:?}", custom.protocol);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user