Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent ENOBUFS errors by skipping UDP send buffer size configuration
The previous implementation attempted to set the UDP socket's send buffer size, which could lead to ENOBUFS errors in some environments. This change: - Overrides setup_socket in UDPConnection to skip buffer size configuration - Improves socket creation by using the correct address family - Updates error message to be more accurate ("Failed to setup socket") This prevents potential buffer-related errors while maintaining the original functionality for other connection types.
- Loading branch information