EthernetUdp.h not found in libraries

Hello,

I want to create a sketch to receive udp.
All of the examples use the includes: EthernetUdp.h. But I don't find this in the IDE Enviorment.
(Tools-Manage libraries)
Can you help me?

Thank you
Jens

EthernetUdp.h is not a separate library. It is part of Ethernet libraries.

you must use the main include file of the library so the IDE knows what library do you wan to use. usually the main include includes UDP .h too.
example

#include <Ethernet.h>
#include <EthernetUdp.h>