sstaub / Ethernet3

Ethernet library for Arduino and Ethernetshield2 / WIZ550io / WIZ850io / USR-ES1 with Wiznet W5500 chip
Other
76 stars 34 forks source link

buffer size improvements #20

Closed sstaub closed 6 years ago

sstaub commented 6 years ago

It should possible to initialize each sockets with different buffer sizes for RX/TX. Maybe using an array for init.

sstaub commented 6 years ago

The problem is that it makes only sense if you know which socket you use, on Arduino that's not given, only when you use sockets directly in bed style.

maxdee commented 5 years ago

This would be very nice! The sockets seem to be assigned sequentially. So if you define 3 sockets with 8k, 4k, 4k and want a 8k udp socket, you would just declare your EthernetUDP before any other things needing sockets?

I am happy to work on this :)