Tagged Questions
1
vote
1answer
114 views
UDP Hole Punching Not Working
I am trying to create a chat program that works by UDP hole punching and connecting directly to a node which is provided by a broker.
The script I have right now works just fine locally. The problems ...
0
votes
0answers
20 views
Is it possible to connect to a UDP server via Javascript?
Alright so I have a C++ game server which I wanna connect to via UDP and Javascript, but I'm not sure how to do that.
WebSockets don't seem to work as they only supports TCP and
WebRTC doesn't seem to ...
0
votes
2answers
37 views
bittorrent protocol by udp sockets
I am stucked with implementing bittorent client in posix c language . I was looking for some examples and found libbt library (SourceForge.net/projects/libbt). In the bittorent, specification is ...
1
vote
0answers
25 views
Python UDP Socket Not Receiving Data
I am attempting to write a UDP chat system, but for some reason the listen() loop is not working and I can not figure out why.
import socket ...
0
votes
1answer
17 views
How to send Udp packet 2 or 3 times after failed received packet in java?
I have send Udp packet to the Server. If the server is OK then I can receive the response packet nicely but when the server is down then I did not get any response packet. Anybody can help me that how ...
0
votes
2answers
50 views
UDP Listener in C#
I'm trying to create a UDP listener within a Windows form. I want to listen on an address and endpoint and want to display the received text in a textbox on the form. I've tried to attack this from ...
0
votes
2answers
32 views
pselect gets interrupted occationally
First and formost, I didn't have the reputation to tag this as being a question about 'pselect', so I went with 'select'.
I use pselect to handle timeouts on an UDP socket. The code looks as follows:
...
0
votes
1answer
36 views
strange udp socket sendto behaviour
I'm trying to send a data using UDP socket and capture the data using a wireshark (under Windows7):
client_sockd= socket(AF_INET,SOCK_DGRAM,IPPROTO_IP);
client_address.sin_family = AF_INET;
...
0
votes
1answer
63 views
UDP socket chat application in java
I'm trying to create a very simple chat application in Java using UDP sockets. There is one server and multiple clients.
right now my code is :
Server :
package chat;
import java.io.*;
import ...
1
vote
0answers
14 views
Distinguishing between 'destination of udp packet unreachable' and 'received packet with payload of length 0' in Objective C
Currently, when I send a udp packet to an unreachable destination (e.g. an unbound local port), I get an event that I can't seem to distinguish from receiving a zero-length udp packet.
I am creating ...
2
votes
1answer
58 views
Why the first client sees to have source ip of 0.0.0.0?
I have a client.c server.c on linux. on both I init a socket:
sockfd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)
in the server I add:
listen_addr.sin_family = AF_INET;
listen_addr.sin_port = ...
0
votes
0answers
39 views
How to read input from RTSP stream in C#?
I have a server running serving RTSP streaming video content on 127.0.0.1:8554/nurv
I am now trying to write a proxy that will read the stream from this location and pass it along via a socket ...
0
votes
1answer
62 views
UDP multi-client chat server
I have a multi-client chat server and for some reason only the first client is being added. I used a tutorial to help get me started. I have included my code below. When I try and add another client ...
1
vote
1answer
80 views
Linux UDP max size of receive buffer
What's the maximum size of Linux UDP receive buffer? I thought it's limited only by available RAM, but when I set
5GB for rmem_max:
echo 5000000000 > /proc/sys/net/core/rmem_max
and 4GB for the ...
0
votes
1answer
40 views
C Handling multiple types of UDP packets
I'm writing an application which listens for incoming UDP packets. There's a possibility of receiving many different types of packets. For instance, the packets could be defined as such,
Package ...
0
votes
0answers
16 views
Broadcast through network don't work
I'm trying to write server and client apps which will communicate through sockets, but I need them to find each other in network without specifying ip addresses. I try to use UDP and send message from ...
1
vote
2answers
60 views
UDP buffer overflow w/o filling the receive buffer?
If I send 1000 "Hello World!" UDP messages (12 bytes + 28 IP/UDP overhead), I observe that on the receiving side I only buffer 658 (always the same number, 658*40 = 26320 bytes). I do that, by sending ...
3
votes
3answers
59 views
How many packets or bytes are in the socket receive queue?
Calling getsockopt with SO_RCVBUF will return the allocated size of the socket receive buffer.
I am curious to know if it is possible to query for how many datagram packets (or bytes) are actually ...
0
votes
1answer
50 views
Making udp sockets non-blocking by making the socket Event Driven
I am trying to make my Socket "Event Based". Following is what i tried:
VOID createServerSocket()
{
WSADATA wsa;
//Initialise winsock//
if (WSAStartup(MAKEWORD(2,2),&wsa) != 0)
...
0
votes
1answer
103 views
Client-server text file transfer using UDP & sockets in C++, server creates a blank file
First of all, I'd like to point out that i'm not a good programmer, so please be patient with me. The logic in the program is as follows: the client sends the server a text file, the server saves it ...
-1
votes
1answer
41 views
Lifetime of a data packet
I send a series of data packets over UDP. The idea is to keep track of the missing records at the receiver and continue receiving the subsequent packets. (for e.g., The sender sends 100 packets among ...
-1
votes
0answers
31 views
Why does recvfrom stop receiving?
I've been trying to debug this program and get it to work with no avail.
recvfrom stops receiving data when "parse_response" is called. Datagram is just a struct with a sequence,type and data field.
...
0
votes
1answer
59 views
Making udp socket non-blocking
I had been working on non-blocking udp socket. The code that I had developed generates a Window Message whenever there is any data to be read over the socket. Below is the code snippet:
void ...
0
votes
2answers
91 views
C# UDP socket app to listen to messages from various sockets
I have a system monitor app that needs to listen to messages from various UDP sockets on another machine. The other sockets continuously send heartbeats to this given IP/port.
This exception gets ...
0
votes
1answer
78 views
Using one socket for send() and receive()? [closed]
I have developed a udp application in which a single server is able to handle 'x' number of clients.
Inside my server, there is a primary thread keeps on receiving requests/data continuously from the ...
0
votes
1answer
222 views
Transferring files using UDP sockets in C
I'm fairly new to socket programming in C, so the code below may have a ton of newbie mistakes.
I'm trying to make a client-server application in which the server will transfer a file to the client ...
0
votes
0answers
39 views
App crashes on datagramsocket receive statement
I am using this basic code
For some reason app stops before the timeout, without exception being raised (logcat displays "waiting" and then app crashes immediately)
try {
DatagramSocket socket = ...
0
votes
1answer
58 views
Multiple UDP sockets using epoll - Not able to receive data
Im trying to receive data from multiple UDP sockets using epoll. This is a test program it doesn't have exact number of sockets.( For testing purpose its set as 50.) The below program doesn't receive ...
0
votes
1answer
30 views
Host UDP Multicast Online, posible?
this may be a very stupid question but networking is not my strong.
I have made a server that uses UDP multicast sockets.
I am able to run the server on my local host and try with as many clients as ...
1
vote
1answer
84 views
Creating a client and server program with python for sending TCP and UDP packets
I have to write a client and a server program with python were the user gets ask if he would like to send via TCP or UDP. The Server simply sends back the data because i want to find out how long it ...
1
vote
2answers
58 views
setting timeout for recv fcn of a UDP socket
I send a UDP packet by sendto, then receive the answer by recv.if recv does not receive the reply, the program does not proceed. However, the udp packet might be lost, or for some reason, the packet ...
1
vote
0answers
21 views
How to unsubscribe from DatagramSocket MessageReceived event
I'm trying to unsubscribe from MessageReceived on the bound UDP socket (DatagramSocket) and getting the exception.
That is how I register:
EventRegistrationToken myRegToken;
myRegToken = ...
0
votes
3answers
66 views
Howto combine TCP and UDP in a single Server?
I am totally new to socket programming and I want to program a combined TCP/UDP-Server socket in C but I don't know how to combine those two.
So at the moment, I do know how TCP- and ...
0
votes
1answer
100 views
java-udp programming -sending message from server to the client
I made connection between server and client properly and i send message from client to the server,but how can i send messages from server to client.I mean how can i make server act like a client too.i ...
0
votes
2answers
38 views
Can WSAAsyncSelect() be used in server in order to ahndle multipe clients? [closed]
I have a single asynchronous socket at my server side. whenever there is something to be read or written on the socket, a window's message is generated. Right now there is only one single asynchronous ...
0
votes
1answer
72 views
How to secure Udp?
I'm working on a server project in C#(.Net). I have a Tcp connection (with SSL). I can secure communication in Tcp. I need to create Udp system for sending datas fast. Now how can I secure Udp? Udp is ...
1
vote
2answers
112 views
Using asynchronous sockets for server handling multiple clients
I have developed a single server multiple client udp application using multithreading. I want to switch to a single processor system now so multithreading will no more help me :(
Now I want to ...
0
votes
1answer
26 views
PHP UDP socket_ recv() timeout
I am working on server/client php scripts which can communicate over a UDP socket.
I was wondering if there is a good way to implement a timeout() for the socket_recv() function. Currently it is ...
0
votes
2answers
63 views
UDP Socketserver - send data through same socket (impossible?)
I have a computer that may be behind several firewalls, have only a private IP... pretty much not reachable from the outside world.
That computer periodically sends UDP data to a remote server ...
-5
votes
1answer
36 views
UDP program that stores the ip address of all the clients that ever sent a message to it [closed]
A UDP sender program stores the ip address of all the clients that ever sent a message to it. After a while the sender program broadcasts the number of ip’s it have and then the all the ip addresses. ...
0
votes
0answers
71 views
UDP checksum changing to 0 when using RAW sockets on Windows 7
I have created a RAW socket and set the socket option as "IP_HDRINCL". I am building the IP header, UDP header and payload and sending the UDP packet out. I am calculating the UDP checksum as per the ...
1
vote
1answer
78 views
Android - synchronizing threads with onSensorChanged to send udp Packets
I am trying to make a multiplayer game on android in which players use the accelerometer to move an object around. Initially I had used TCP to send packets which contain the X & Y coordinates of ...
0
votes
1answer
51 views
asynchronous udp server client application
I am trying to make an asynchronous UDP chat application, currently having only one client and server.
When I run my server, a lot of redundant data is displayed. Afterward, when some text is typed, ...
1
vote
1answer
49 views
Non blocking socket in c
Currently I am working on a single server,single client udp chat application. Initially I used blocking sockets which is the default condition. Now I want to convert the socket into non-blocking so ...
0
votes
1answer
228 views
Boost C++ UDP example can not transmit over internet
Hello i am experimenting with Boost C++ UDP client-server.
I took the one of the examples that comes with ASIO and modified it a bit.
It works very well on local network but when i host the server ...
1
vote
1answer
186 views
UDP server connection gets reset, how to keep live to handle request from second client?
I need to have peer to peer chat between two client without having need of server.
As a part of initial testing I am working on one UDP based server to listen one port to get client1 & client2 ...
0
votes
1answer
550 views
Are there any source codes or tutorial on softphone / voip [closed]
i'm looking forward to build a VOIP application using java. I'm familiar with using TCP/IP and understood very well about how i can use TCP/IP to create instant messaging program. But I want to move ...
2
votes
2answers
10k views
An existing connection was forcibly closed by the remote host
I need to obtain UDP datagram from Asynchronous Socket Server but an exception occurred in my application :
Problem appear there :
Byte[] receiveBytes = udpClient.Receive(ref RemoteIpEndPoint);
...
39
votes
8answers
40k views
Can two applications listen to the same port?
As simple as it gets - can two applications on the same machine bind to the same port and ip address? Taking it a step further, can one app listen to requests coming from a certain ip and the other to ...
1
vote
2answers
1k views
Does a UDP service have to respond from the connected IP address?
Pyzor uses UDP/IP as the communication protocol. We recently switched the public server to a new machine, and started getting reports of many timeouts. I discovered that I could fix the problem if I ...





