chipsenkbeil / chipsenkbeil/remote.nvim
Support chunked UDP messages
Open
enhancement
- Dominant language
- Python
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Master Issue: #3
https://pymotw.com/3/socket/udp.html
As mentioned, ipv4 only supports 65,507 bytes per datagram. Need to come up with system to send multiple datagrams that will be joined on the server (or streamed).
E.g. each datagram could have a header containing hmac for verification and group/individual ids
```
{
"header": {
"signature": "",
"group_id": "",
"group_count": "",
"id": "",
"order": ""
},
"data": BINARY DATA
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.