Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
8answers
4k views

Passing a structure through Sockets in C

I am trying to pass whole structure from client to server or vice-versa. Let us assume my structure as follows struct temp { int a; char b; } I am using sendto and sending the address of the ...
4
votes
3answers
135 views

How to impliment a “send to kindle” link?

I'm trying to find out how to create a link that will send the current page/article on my site to a users Kindle device. I haven't been able to find much about it, but I know it can be done because I ...
4
votes
2answers
189 views

Faster WinSock sendto()

I'm using Windows Server 2008, and my program is in C++. I'm using WinSock2 and sendto() in a while(true) loop to send my packets. Code like so: while(true) { if(c == snd->max) c = ...
3
votes
1answer
80 views

How to generate constant UDP traffic?

I need to write a UDP client in C that generates traffic that will have a sending rate of Ron for a time of Ton and stop sending anything for a time Toff and repeat again. So, the cross traffic is ...
3
votes
2answers
184 views

Linux multicast sendto() performance degrades with local listeners

We have a "publisher" application that sends out data using multicast. The application is extremely performance sensitive (we are optimizing at the microsecond level). Applications that listen to ...
3
votes
6answers
981 views

Multiple sendto() using UDP socket

I have a network software which uses UDP to communicate with other instances of the same program. For different reasons, I must use UDP here. I recently had problems sending huge ammounts of data ...
2
votes
1answer
2k views

sendto : Resource temporarily unavailable (errno 11)

I am having a problem with sendto. I have a receiver who receives UPD packets with recvfrom and then replies to the sender using sendto. Unfortunately, I am getting errno 11 (Resource temporarily ...
2
votes
3answers
445 views

How to Send a structure using sendto()

I have created structure : struct buffer { string ProjectName ; string ProjectID ; } buffer buf; buf.ProjectID = "212"; buf.ProjectName = "MyProj"; Now to send this structure using sendto ...
2
votes
2answers
2k views

Python sendto() not working on 3.1 (works on 2.6)

For some reason, the following seems to work perfectly on my ubuntu machine running python 2.6 and returns an error on my windows xp box running python 3.1 from socket import socket, AF_INET, ...
2
votes
2answers
780 views

Link-scope IPv6 Multicast packets suddenly not routable on a MacBook Pro?

This is a slightly obscure question, but I'm stumped and I thought maybe somebody out there might have more of a clue on the issue. My co-worker has been successfully running an in-house application ...
1
vote
1answer
55 views

How to force client in UDP to open port when sending with sendto

I have simple server and client in UDP (WinSocks/C++). I send datagram client -> server via sendto, and reply from server to client using the ip and port obtained from recvfrom function. I found out ...
1
vote
1answer
144 views

“Invalid argument” when sending UDP packet, but which?

My C++ application is sending binary data as UDP packets. The sendto() call returns EINVAL (Invalid argument), but I don't see anything wrong with the parameters I'm passing. I did an strace of the ...
1
vote
1answer
165 views

TCP Socket hanging - both sides stuck in sendto()

We have an linux application (we don't have the source) that seems to be hanging. The socket between the two processes is reported as ESTABLISHED, and there is some data in the kernel socket buffer ...
1
vote
1answer
117 views

C# Socket.SendTo in a loop eventually causes SocketException (depends on the router)

I am doing some basic Socket messaging. I have a routine that works well but there is a problem under load. I'm using UDP to do a connectionless SendTo to basically do a ping-like operation to see ...
1
vote
4answers
319 views

What causes udp reception delay?

I have noticed that when I am sending packets at even intervals from a udp socket, the first packet sent seems to be delayed. For example, if I am sending the packets every 100 ms, I find the delay ...
1
vote
2answers
2k views

Socket programming: sendto always fails with errno 22

I am always getting no bytes sent, with an errno of 22 (Invalid Argument) with this code. The destination_host is set elsewhere and known to be valid, so I really don't see what is going on. ...
1
vote
1answer
2k views

raw socket sendto failed using C on Linux

I'm trying to send a raw packet using UDP, with the IP and UDP headers that I have constructed in my code. Raw packet successfully initialized with socket(PF_INET, SOCK_RAW, IPPROTO_UDP) and socket ...
1
vote
2answers
225 views

When will one socket suffice, when do I need to create more?

The "connectionless" aspect of UDP has thrown me for a loop... If I setup a UDP socket set to INADDR_ANY, then bind that to port 33445 on the local machine, the machine will accept incoming ...
1
vote
5answers
470 views

SendToAsync memory leak?

I have a simple .net 3.5sp1 windows application (in C#) that acts as a UDP server. It listens on a port, receives data from an endpoint, and then retransmits what it receives to another endpoint (i.e. ...
1
vote
1answer
244 views

VS 2008 created shortcut doesn't show up in “Send To” menu

I have a WinForms application built using Visual Studio 2008. I added a Setup Project to the solution to create an installation MSI file. I need the setup project to create a shortcut pointing to ...
1
vote
1answer
390 views

sendto() crashes with error code “Success”

My problem is quite infuriating, actually. I'll show you the code first. /* ** listener.c -- a datagram sockets "server" demo */ //Original Code: Brian Hall (beej@beej.us) //Commented and modified by ...
1
vote
2answers
4k views

Help with Sending/ Receiving UDP packets - C Sockets

Ok, if you look at some of my previous questions, I've been working on getting a simple connection up and running with C sockets (I'm still fairly new to the whole networking aspect of an program, but ...
1
vote
1answer
502 views

Explore.exe Address Bar “Shell:” Command in Windows 7

With Windows 7 was just trying to navigate to c:\users\scott.cate\sendto to modify the [send to] context menu and I was getting access denied. With a little search engine work I found this trick. ...
0
votes
2answers
59 views

Socket - Permission denied in C

I'm trying to get an MX record from an DNS server in C. My problem is, that everytime I call sendto or recvfrom I get a Permission denied error. (IDE - Xcode 4, Mac OS X Lion) Haven't really done ...
0
votes
1answer
56 views

recvcfrom() and sendto() ip address to be used

Actually, I want to create an application in C such that 2 people can chat with each other. Let us assume they know their IP (Actually, I think I am making the mistake here. I get my IPs from ...
0
votes
0answers
26 views

How to add arguments when launching application by “Send To” menu on Windows?

I'm adding an application to my "Send To" menu . If I try to add an argument (e.g. Target: C:\my programs\myapplcation.exe -debug") so it does not work at all. Do you know if that's possible to ...
0
votes
1answer
52 views

TCP messages getting coalesced

I have a Java application that is writing to the network. It is writing messages in the region of 764b, +/- 5b. A pcap shows that the stream is getting IP fragmented and we can't explain this. Linux ...
0
votes
1answer
124 views

C sendto works sometimes…just stops after some time… NO ERRORS

Ive been getting strange results with the sendto function in C.(LINUX) What I am trying to do is to implement a reliable UDP kind of scheme. The snippet of code provided below is a part of the timer ...
0
votes
0answers
58 views

can a message just disappear between the call to sendto() and the sending network card without notifying the caller?

I send a datagram (6740 bytes) with sendto() to another host on the same LAN. Often there is no problem, and the other host got the datagram. But sometimes the datagram disapears, it never reach the ...
0
votes
1answer
306 views

sendto not working on VxWorks

I asked this question before and had no resolution (still having the problem). I am stumped because the function returned without error and NO DATA was sent! This code works on Linux ... the VxWorks ...
0
votes
2answers
232 views

C sendto returns -1 if broadcasting on a vpn

I have built a udp server that broadcasts a message every so often. It broadcasts without a problem. But if I turn on my vpn, then sendto will start returning -1 even though I am sending to ...
0
votes
2answers
104 views

SendTo menu and single instance program

I'm making a program through which I will be able to send files to an FTP server just by right clicking "SendTo". The problem is that every time I click "SendTo" it opens a new exe file and it works ...
0
votes
1answer
420 views

C windows sendto()

I am trying to send over UDP using the following code, but i'm getting strange results. if((sendto(newSocket, sendBuf, totalLength, 0, (SOCKADDR *)&sendAddr, sizeof(sendAddr)) == bytesSent) ...
0
votes
1answer
31 views

Is there a technique to determine if a dos app was invoked via sentto vs a dos window?

In the case of a sendto invocation, I would like to keep the application open, after it completes, so the user can look at it. In the case of a dos window invocation, the user controls when the ...
0
votes
5answers
2k views

Sending structure using recvfrom() and sendto()

I am using C language which is a common platform for both the server and the client. I have a structure of a particular type which I want to send to the client from the server. For e.g. SERVER CODE ...
0
votes
6answers
2k views

UDP Response

UDP doesnot sends any ack back, but will it send any response? I have set up client server UDP program. If I give client to send data to non existent server then will client receive any response? My ...