Top "Datagram" questions

A datagram is a unitary message delivered entire over a network, typically via UDP, and typically with no guarantee on order or reliability of message delivery.

Received UDP packet length

How to get the length of received UDP packet? Using wireshark I could see the correct length of datagram. How …

c networking udp datagram
java.net.SocketException: Not a multicast address

I was working with a MulticastSocket and when ever I tried to join a group, it would never work when …

java networking network-programming datagram multicastsocket
Is it possible to send datagrams over TCP?

In theory nothing prevents using TCP socket with SOCK_DGRAM. What you'll get is reliable datagram transport. Is this possible …

tcp sockets datagram
Is it possible to use just 1 UDPSocket for sending/receiving on the same port?

I'm trying to send a DatagramPacket, and then must wait for an Acknowlegment from sever, so that I know if …

java networking udp packet datagram