internalHandleSocketEvent method
void
internalHandleSocketEvent(
- dynamic event
Handles an incoming socket event (datagram). This is kept for backward compatibility but the socket now handles connection-level sequencing and calls deliverData/deliverFin/deliverReset directly.
Implementation
void internalHandleSocketEvent(dynamic event) {
// With per-connection sequencing, the socket handles all receive ordering
// and calls deliverData/deliverFin/deliverReset directly.
// This method is kept as a no-op for any remaining callers.
}