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.

how to send an int through UDP in java

I'm trying to write a bit of code which sends a single int over UDP. The code I have so …

java udp datagram
Why do I get UDP datagrams out of order even with processes running locally?

I'm developing a java interface between a streaming server and a flash client. I noticed that UDP datagrams can reach …

java udp datagram
What is the max size of AF_UNIX datagram message in Linux?

Currently I'm hitting a hard limit of 130688 bytes. If I try and send anything larger in one message I get …

sockets unix dns datagram
TCP/IP packets and datagrams

Is it true that upon receiving a segment from Transport Layer(TCP) towards Network Layer(IP) the resulting data unit …

tcp udp datagram packets
JAVA set / choose specific NIC from multiple (UDP)

I am trying to send UDP with datagram in JAVA and my machine have several NIC with different IP's. How …

java udp set datagram nic
How to make two-directional unix domain sockets with SOCK_DGRAM?

I am trying to write a simple Unix datagram server/client, and am having some problems. What I want is …

c network-programming datagram unix-socket socat
What is the default size of datagram queue length in Unix Domain Sockets (AF_UNIX)? Is it configurable?

I know the maximum length of a datagram queue length can be found using "cat /proc/sys/net/unix/max_…

c sockets unix linux-kernel datagram
How to get rid of the empty remaining of the buffer?

I have a server-client application that is using a datagram socket to exchange messages. I have initially set the buffer …

java sockets networking udp datagram
How to send audio stream via UDP in java?

I have a problem, i have set MediaLocator to microphone input, and then created Player. I need to grab that …

java audio stream microphone datagram
Port Unreachable when using Datagram Channel

While using Datagram Channel I get a PortUnreachableException. This is what my Codes look like : This is the sender side //…

java networking nio datagram channels