1202
How TCP and UDP packets come to the world
(lemmy.one)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Broadcast would mean it's sent to anyone. UDP packets still usually have a unicast address and thus are routed by routers and switches to specific machines, but as a connectionless protocol, UDP never validates which, if any, packets are received by the recipient like TCP does. If any verification is needed that needs to be handled higher in the OSI stack. E.g. by the application layer.