mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
modtrezormsg: add udp ping handling to modtrezormsg-unix.h
This commit is contained in:
parent
fa40e32b93
commit
4a359d2d35
@ -57,6 +57,10 @@ ssize_t msg_recv(uint8_t *iface, uint8_t *buf, size_t len)
|
|||||||
}
|
}
|
||||||
si_other = si;
|
si_other = si;
|
||||||
slen = sl;
|
slen = sl;
|
||||||
|
if (r == 8 && memcmp("PINGPING", buf, 8) == 0) {
|
||||||
|
msg_send(0, (const uint8_t *)"PONGPONG", 8);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -429,16 +429,11 @@ STATIC mp_obj_t mod_TrezorMsg_Msg_select(mp_obj_t self, mp_obj_t timeout_us) {
|
|||||||
uint8_t recvbuf[64];
|
uint8_t recvbuf[64];
|
||||||
ssize_t l = msg_recv(&iface, recvbuf, 64);
|
ssize_t l = msg_recv(&iface, recvbuf, 64);
|
||||||
if (l > 0) {
|
if (l > 0) {
|
||||||
if (l == 8 && memcmp("PINGPING", recvbuf, 8) == 0) {
|
|
||||||
msg_send(iface, (const uint8_t *)"PONGPONG", 8);
|
|
||||||
return mp_const_none;
|
|
||||||
} else {
|
|
||||||
mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL));
|
mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(2, NULL));
|
||||||
tuple->items[0] = MP_OBJ_NEW_SMALL_INT(iface);
|
tuple->items[0] = MP_OBJ_NEW_SMALL_INT(iface);
|
||||||
tuple->items[1] = mp_obj_new_str_of_type(&mp_type_bytes, recvbuf, l);
|
tuple->items[1] = mp_obj_new_str_of_type(&mp_type_bytes, recvbuf, l);
|
||||||
return MP_OBJ_FROM_PTR(tuple);
|
return MP_OBJ_FROM_PTR(tuple);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
if (timeout <= 0) {
|
if (timeout <= 0) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user