recv_fds doesnt need to be an acm

one_ring_to_rule_them_all
Guillermo Rodriguez 2025-04-02 15:00:40 -03:00
parent b8d1fd6978
commit dfc0254995
No known key found for this signature in database
GPG Key ID: 002CC5F1E6BDA53E
2 changed files with 3 additions and 5 deletions

View File

@ -70,8 +70,8 @@ async def _attach_to_ring(
name=ring_name,
sock_path=sock_path
) as (ctx, token),
recv_fds(sock_path, fd_amount) as fds,
):
fds = await recv_fds(sock_path, fd_amount)
log.info(
f'received fds: {fds}'
)

View File

@ -29,10 +29,10 @@ async def send_fds(fds: list[int], sock_path: str):
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
await sock.bind(sock_path)
sock.listen(1)
yield
fds = array.array('i', fds)
# first byte of msg will be len of fds to send % 256
msg = bytes([len(fds) % 256])
yield
conn, _ = await sock.accept()
await conn.sendmsg(
[msg],
@ -46,7 +46,6 @@ async def send_fds(fds: list[int], sock_path: str):
sock.close()
@acm
async def recv_fds(sock_path: str, amount: int) -> tuple:
stream = await trio.open_unix_socket(sock_path)
sock = stream.socket
@ -87,8 +86,7 @@ async def recv_fds(sock_path: str, amount: int) -> tuple:
)
)
yield tuple(a)
return
return tuple(a)
except (ValueError, IndexError):
pass