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.

What's the difference between streams and datagrams in network programming?

What's the difference between sockets (stream) vs sockets (datagrams)? Why use one over the other?

sockets network-programming datagram
Unix Domain Socket: Using datagram communication between one server process and several client processes

I would like to establish an IPC connection between several processes on Linux. I have never used UNIX sockets before, …

c sockets datagram unix-socket
Need to send a UDP packet and receive a response in Java

I have to send a UDP packet and get a response back from UDP server. I though UDP was analogous …

java sockets udp datagram
Building OpenSSL on Android NDK

I want to use DTLS (on OpenSSL) using JNI on Android 2.1/2.2. Can someone help me get started (tutorials, howto, pointers …

android java-native-interface openssl android-ndk datagram
Python socket.error: [Errno 13] Permission denied

Using Linux and Python, I want to send some data with broadcast: d = b'109u433279423423423' import socket s = socket.…

linux python-3.x udp datagram
Sending packets to 255.255.255.255 by Java DatagramSocket fails

I'm programming a networking program in java , and I want to send some Packets to 255.255.255.255, but it fails , even when …

java udp broadcast datagram
DatagramPacket to string

Trying to convert a received DatagramPacket to string, but I have a small problem. Not sure what's the best way …

java bytearray datagram
Non-blocking UDP I/O vs blocking UDP I/O in Java

Non-blocking TCP/IP SocketChannels and Selector in NIO help me to handle many TCP/IP connections with small number of …

java udp nio datagram
Some java Datagram Socket questions

I have recently nose dived into socket programming using java, and I have a few general sort of questions. There …

java sockets datagram
setSotimeout on a datagram socket

The server acts like an echo server. The clients sends 10 packets to server (1 sec of gap) When Client receives packets …

java sockets datagram socket-timeout-exception