forked from M-Labs/artiq-zynq
mgmt: log incoming connection
This commit is contained in:
parent
0c6db0d12c
commit
b62fbce826
|
@ -33,6 +33,7 @@ async fn get_logger_buffer() -> LogBufferRef<'static> {
|
||||||
|
|
||||||
async fn handle_connection(stream: &mut TcpStream, pull_id: Rc<RefCell<u32>>) -> Result<(), Error> {
|
async fn handle_connection(stream: &mut TcpStream, pull_id: Rc<RefCell<u32>>) -> Result<(), Error> {
|
||||||
Request::read_magic(stream).await?;
|
Request::read_magic(stream).await?;
|
||||||
|
info!("received connection");
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
let req = Request::read_from(stream).await;
|
let req = Request::read_from(stream).await;
|
||||||
|
|
Loading…
Reference in New Issue