X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=tos%2Flib%2Fnet%2Fblip%2FUdpC.nc;h=eda9c236f26df32e83ed18e52a447cc9e5ee7e25;hb=3d5c78e867d6fd52e44894e93e4bd0c172071522;hp=31cb217026749e49507e2933c18bd5b5d793f82f;hpb=34dda4f22e2b435b6ddec072706809f158e60c7f;p=tinyos-2.x.git diff --git a/tos/lib/net/blip/UdpC.nc b/tos/lib/net/blip/UdpC.nc index 31cb2170..eda9c236 100644 --- a/tos/lib/net/blip/UdpC.nc +++ b/tos/lib/net/blip/UdpC.nc @@ -1,10 +1,14 @@ +#include + configuration UdpC { - provides interface UDP[uint8_t clnt]; + provides interface UDP[uint8_t clnt]; + provides interface Statistics; } implementation { components MainC, IPDispatchC, UdpP, IPAddressC; UDP = UdpP; + Statistics = UdpP; MainC -> UdpP.Init; UdpP.IP -> IPDispatchC.IP[IANA_UDP];