You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Windows in filebeat/inputsource/common/dgram when a long UDP message is received, it is passed to the callback to be forwarded.
Error reading from the socket read udp [::]:9001: wsarecvfrom: A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
On Windows in filebeat/inputsource/common/dgram when a long UDP message is received, it is passed to the callback to be forwarded.
beats/filebeat/inputsource/common/dgram/handler.go
Lines 79 to 84 in a1a6bd8
The comment here notes that the
addr
will be nil.However, in the case that the callback is provided by the UDP input, the
RemoteAddr
field is deference with theString
method.beats/filebeat/input/udp/input.go
Lines 67 to 82 in a1a6bd8
This results in a nil pointer deference.
The callback definition should check for a nil
net.Addr
and not attempt to render it in the case that it is nil.The text was updated successfully, but these errors were encountered: