Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
156 views

Are datagrams always received completely?

Most datagram receiving functions such as c's recv or read, javas DatagramPacket class or pythons SocketServer, include the possibility to find out the amount of received data. c: int amount = ...
6
votes
5answers
2k views

Java dropping half of UDP packets

I have a simple client/server setup. The server is in C and the client that is querying the server is Java. My problem is that, when I send bandwidth-intensive data over the connection, such as Video ...
5
votes
1answer
1k views

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?
4
votes
2answers
89 views

size of the next queued datagram - UDP

I am using System.Net.Sockets Socket class to receive UDP datagrams. I wanted to know the exact length of the datagram received in order to check the validity of the datagram. Socket.Receive(Byte()) ...
4
votes
2answers
795 views

MediaRecorder and UDP (DatagramSocket) in Android

I am currently writing a program that is a sort of VoIP client. I am trying to establish a connection between 2 clients and send and receive data, that is recorded from microphone. I am currently ...
4
votes
5answers
2k views

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, and thus I don't know if this is the correct approach to this problem. One ...
3
votes
4answers
824 views

“Lost” UDP packets (JBoss + DatagramSocket)

I develop part of some JBoss+EJB based enterprise application. My module needs to process huge amount of incoming UDP packets. I've done some load testing and it looks that in case of sending packets ...
3
votes
1answer
121 views

Trimming 0x00 in received DatagramPacket

In my Java app I receive DatagramPacket(s) through DatagramSocket. I know the maximum number of bytes which packet could contain, but actually every packet length varies (not exceeding max length). ...
3
votes
2answers
555 views

What is the max size of AF_UNIX datagram message that can be sent in linux?

Currently I'm hitting a hard limit of 130688 bytes. If I try and send anything larger in one message I get a ENOBUFS error. I have checked the net.core.rmem_default, net.core.wmem_default, ...
3
votes
4answers
1k views

Why do I get UDP datagrams out of order even with processes runnning locally?

Well, I'm developing a java interface between a streaming server and a flash client. I noticed that UDP datagrams can reach my interface out of order even if both processes are running locally. Is ...
3
votes
4answers
382 views

Is this statement correct in java?

I would like to do a data transfer between two computers using datagram socket.Iam using the following line this way : host=InetAddress.getByAddress("mypc",new byte[]{192,168,1,110}); but when i ...
3
votes
2answers
6k views

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 threads. But how about UDP DatagramChannels? (I must admit that I'm not very ...
3
votes
4answers
1k views

Automated naming of AF_UNIX local datagram sockets?

I'm implementing a simple service using datagrams over unix local sockets (AF_UNIX address family, i.e. not UDP). The server is bound to a public address, and it receives requests just fine. ...
2
votes
3answers
67 views

DatagramSocket temporarily stops receiving packets (Java)

I have programmed a plugin in Lua for a game that sends player information via a UDP packet (512 bytes) to a remote server that reads the data from the packet and aggregates all player information ...
2
votes
1answer
187 views

Datagram Channel Sockets not writing Java

Simply said, I'm able to receive data from the connected socket, until about 10 seconds after it starts. The solution to fix this is, to send data to the 'client'(an ARDrone) to keep the data stream ...
2
votes
3answers
583 views

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 I send them to 192.168.1.255, which according to the output of ifconfig ...
2
votes
2answers
388 views

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 is a bind() method, as well as a connect() and disconnect(). There is no unbind(). Is ...
2
votes
2answers
391 views

Socket not closing properly

I am trying to create a UDP listener that will listen on a separate thread. It works fine the first time but when I stop the connection and then start it again it gives me errors. listenerRunnable = ...
2
votes
2answers
3k views

Is Multicast broken for Android 2.0.1 (currently on the DROID) or am I missing something?

This code works perfectly in Ubuntu, Windows, and Mac OS X. It also works fine with a Nexus One running Android 2.1.1. I start sending and listening multicast datagrams, and all the computers and the ...
2
votes
1answer
673 views

Problem with java socket, won't listen for more than one datagram package

I'm creating a server(now called Server1) which is communicating with another server i've got(now called Server2). Server1 sends a datagrampackage to Server2. Server2 is supposed to send two ...
2
votes
1answer
962 views

Using NIO DatagramChannel will I need to handle partially read/written packets?

When using SocketChannel, you need to retain read and write buffers to handle partial writes and reads. I have a nagging suspicion that it might not be needed when using a DatagramChannel, but info ...
2
votes
3answers
340 views

Send multiple datagrams using a single send() call?

When datagram-based socket (raw socket or UDP) is used with gather-style send, all the data are concatenated to form a single IP packet. Is there a way to send several datagrams using a single call?
1
vote
2answers
75 views

UDP Sockets in C#?

If socket.ReceiveFrom (byte [] message, EndPoint endPoint) is used to receive data on a binded UDP socket, and no data is received what happens? Does it keep waiting for data to arrive or does it ...
1
vote
1answer
25 views

Reading UDP socket: records or stream

Let's say that UDP sender executes sendto several times: sendto(s, buffer, 100, ...); sendto(s, buffer, 200, ...); sendto(s, buffer, 300, ...); Receiver executes the following code when data is ...
1
vote
5answers
106 views

What's wrong with this datagram socket?

I have some code here which queries the Steam master servers to get a list of IPs of game servers: #define _BSD_SOURCE #include <stdio.h> #include <stdlib.h> #include <string.h> ...
1
vote
1answer
49 views

What is the difference between write and send on NIO channels?

I'm building a UDP communication system with Java NIO, and browsing through the javadoc for the APIs I noticed that channels have a write primitive and a send primitive. I have prototyped and tried ...
1
vote
1answer
227 views

C++ problem with Datagram (UDP)winsocket to sendto and recvfrom on the same socket through the loopback adapter

I am trying to send some data with a udp socket and receive them back on the same socket through windows loopback adatper. In my network properties I set the loopback adapter to have the following ip ...
1
vote
2answers
398 views

Using QUdpSocket to send datagrams

I am trying to send a datagram using QUdpSocket. The following is the code I am using: udpSocket = new QUdpSocket(this); QByteArray datagram = "Message"; udpSocket->writeDatagram(datagram.data(), ...
1
vote
3answers
169 views

linux kernel->userspace multicast streaming datagrams

I'm planning to write a linux driver for some memory-mapped hardware (it's in an FPGA, so I can adjust this memory-mapped interface at both ends if needed). This FPGA logic generates a sequence of ...
1
vote
2answers
197 views

Can writes to a datagram socket ever raise SIGPIPE?

I'm working with some code that needs to be safe against killing the caller due to SIGPIPE, but the only socket writes it's performing are going to datagram sockets (both UDP and Unix domain datagram ...
1
vote
1answer
156 views

How can I make reading from a DatagramSocket only block for a limited time (time out)?

I'm running a simulation for network packet transmission loss. My server app sometimes doesn't send data back to my client. In my client I'm running a ping to the server every seconds 10 times. ...
1
vote
3answers
625 views

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 far: Sender: int num = 2; DatagramSocket socket = new DatagramSocket(); ByteArrayOutputStream bout = new ...
1
vote
2answers
473 views

Sending UDP packets via Java

I'm trying to send UDP packets from my PC to an FPGA via my laptop's ethernet cable. I've been using Java's DatagramPacket and DatagramSocket to send the UDP packets. However, these packets will only ...
1
vote
4answers
7k views

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 etc) with building OpenSSL for Android (2.1/2.2) using the Android NDK? ...
1
vote
1answer
675 views

Datagram Transport Layer Security (DTLS) on Android/Java

Has anyone used DTLS on Android or is there an open source Java implementation that supports DTLS? What are my other options for securing UDP traffic on Android?
1
vote
1answer
110 views

help on ejb stateless datagram and message driven beans

i have a client thats sending a message to the ejbserver using UDP, i want the server(stateless bean) to echo back this message to the client but i cant seem to do this. or can i implement the same ...
1
vote
1answer
1k views

Closing down a Netty UDP Server

I have a written a very simple UDP Server using Netty - it quite happily binds itself and accepts messages, but I can'y figure out how to unbind it. Am I missing something, or does Netty not expose ...
1
vote
2answers
122 views

Datagrams in java

Is possibility in java without using native functions to send datagrams ?
1
vote
1answer
295 views

java Socket or DatagramSocket for connecting to a NNTP server

Hay Guys, i want to write a simple NNTP client, which can connect to a server, send AUTHINFO details, and use GROUP and BODY to join a group and retreive posts. I had a discussion with a couple of ...
1
vote
1answer
2k views

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 sound from the microphone, encode it to some lower quality stream, and send it as a ...
0
votes
3answers
29 views

ArrayIndexOutOfBoundsException in DatagramPacket-based application

At the beginning, I need to apologise for polish names of variables/functions that I've used in my program. So, there's little dictionary: Klient - Client Serwer - Server wejscie - input wyjscie - ...
0
votes
0answers
20 views

Is there a way to “bind” a port to a socket on Windows Phone?

I'm porting a library to Windows Phone that works in non connected mode with UDP datagrams. As receiveFromAsync can only take in parameter the REMOTE endpoint, it only catches packets sent from the ...
0
votes
0answers
17 views

How do I construct a Socket or Datagram client that will start a J2ME application?

I am try to start a J2ME application using SOCKETS or DATAGRAMS only. I know it is possible via SMS and via an alarm but that is not what I am trying to do. I have a working J2ME application and ...
0
votes
1answer
26 views

Mutlicast server and clients ack by sending objects

I'm implementing a multicast server which sends out its IP to the multicast group and the clients in the group, upon receiving the server's IP, send an object to it. And this is done at a regular ...
0
votes
0answers
35 views

Android UDP Recieve over 4g [closed]

How come I can receive UDP packets on my android over wi-fi, but I can't over 4G. I have set up port forwarding on my router.... Anyone got any ideas?
0
votes
4answers
63 views

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 with a java.net.DatagramPacket in Java, but the documentation for DatagramPacket seems to be that you ...
0
votes
3answers
50 views

DatagramPacket to string

Trying to convert a received DatagramPacket to string, but I have a small problem. Not sure what's the best way to go about it. The data I'll be receiving is mostly of unknown length, hence I have ...
0
votes
1answer
132 views

DatagramSocket: File sending, client does not receive image file

I am trying to send bunch of files with using DatagramSocket. But there is a problem which I can not figure out. Transferring files other than image files goes well but while sending image files, ...
0
votes
1answer
51 views

I want datagram communication between two mobiles i used following code but it doesnot work kindly check the code? [closed]

I have tried other method but the size of array is more than 900? For receiving datagram i user following code try { DatagramConnection dgc = (DatagramConnection) ...
0
votes
1answer
44 views

Network Discovery via datagram sockets: Multicasting

I'm implementing the example where a server listens for any active clients in the network. I'm using Datagram sockets for the server to do the multicast and clients to respon to the server. public ...

1 2