The sendto tag has no wiki summary.
0
votes
0answers
5 views
CAsyncSocket::SendTo function failing only in Win32 bit release mode
I have a vc++ application which sends a socket message to a port through CAsyncSocket::SendTo API. It works fine in both Win32 Release and Debug mode when run in Windows server 2003.
However when i ...
0
votes
1answer
38 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
78 views
How to send bytes using python (example please!)
I'm trying to create a simple thingermajigger in python at the moment just to test out sending UDP packets over a socket. I think that I'm getting my script perfectly fine other than using the ...
0
votes
2answers
154 views
WinXP: sendto() failed with 10014 (WSAEFAULT) if destination address is const-qualified, IPv4-specific
It seems, I found a bug in Windows...
Ok, let not be such pathetic one. I'm trying to do generic sendto() operation for UDP and occasionaly found that WinXP (32 bit, SP3, checked on real and virtual ...
1
vote
1answer
46 views
Sending email with attachment using SENDTO on some devices doesn't work
At first you're going to think "Wait, this question is a duplicate!". Read on.
My problem is I'm trying to use the Intent ACTION_SENDTO with an Email URI AND attach a file. This reduces the chooser ...
0
votes
2answers
108 views
Using Getaddrinfo() and SendTo() on Socket UDP fails - Segmentation fault (core dumped)
After I start using getaddrinfo() to retrieve dynamic IP addresses, the sendTo() of my socket no longer works and returns error "Segmentation fault (core dumped)". Why is that happening, is there any ...
0
votes
1answer
83 views
UDP client/server block
This is the client:
int main(int argc, char* argv[]){
int port;
int nrb;
int flag;
int file;
struct hostent *host;
unsigned int len;
char fileName[50];
int sock;
...
0
votes
2answers
92 views
sendto() python
I use python program to do traffic generator in Linux Ubuntu, and the code like below:
import socket, sys
host = sys.argv[1] #Server IP Address
textport = sys.argv[2] #Server Binding Port
s = ...
1
vote
0answers
125 views
vxWorks sendto crashes program, but doesn't return error
I am trying to send a buffer repeatedly with sendto using UDP transfer. It works sometimes, however other times it crashes the program and I cannot interrupt it. I do this nBuf times while doing ...
1
vote
3answers
222 views
How to send float[] via UDP + Unsigned-Long-Operator-Curiosity
I am writing an C++ Application which reads several voltages from a device. I receive these measurements in an float[] and I want to send this array via UDP to a MATLAB-Script.
the C++-function ...
1
vote
2answers
360 views
UDP non-blocking socket on a real-time OS: sendto() and recvfrom() can return with partial message?
This is my first message here.
I'm working with a non-blocking UDP socket on a real-time OS (OnTime and VxWorks).
I have read the documentation and some forums but I have some doubts about 'atomicity' ...
0
votes
1answer
213 views
UDP Talker gives “Bad value for ai_flags” on sendto() call
I am stuck with my UDP talker app.
The goal for the moment is to initialize the server, register a client and then proceed to send something to that client.
I've worked my way through Beej's network ...
0
votes
2answers
334 views
How do I properly handle spaces in file names passed as arguments to a Powershell script via a SendTo shortcut?
I've written a (very) simple script that appends the current date to a given file name in Powershell and I've set it up with a SendTo shortcut for easy access.
However, it doesn't handle file names ...
0
votes
1answer
305 views
android.content.Intent.ACTION_SENDTO default email chooser
How can I send a e-mail in android app without chooser? I want that user set a default email client once and the app just use this email client until the user change your settings!
the idea is press ...
4
votes
1answer
164 views
Python 3 - verify sendto() Success
I have 2 UDP responses to a destination ip, one right after the other:
sendsock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
sendsock.bind(('%s' % ip_adr, 1036))
#send ...
1
vote
2answers
240 views
ACTION_SENDTO does not work
I want to send out an email from my app. So I used the following code.
String uriText = "abcd@gmail.com" + "?subject=" + URLEncoder.encode("Subject") + "&body=" + URLEncoder.encode("some text ...
3
votes
1answer
314 views
How can I make my Windows Forms program execute any of the SendTo shortcuts
I want to be able to show the SendTo menu on a file list inside my program and then execute the SendTo shortcut or droptarget on the chosen file. It seems I can ShellExecute a .lnk file, but I need to ...
0
votes
2answers
640 views
recvfrom: Bad address, sendto: Address family not supported by protocol
i'm trying to implement a little UDP-Server/Client Application in C and got two errors on Server-side: recvfrom: Bad address && sendto: Address family not supported by protocol. I searched ...
0
votes
0answers
11 views
Display variable under sendto
I have this code to send information from client to server and I'm trying to send variable, trial as output to a server.
#include<stdio.h>
#include<string.h>
//#include<sys/stat.h>
...
0
votes
0answers
82 views
Building your own mapi.dll
I'm in the middle of creating email application in windows. Now I want to integrate it with the "send to mail recipient" feature in the windows explorer and also some email aware application (e.g. ...
1
vote
2answers
148 views
sendto() blocked when the buffer was full, how to solve it?
I wanna make a chat room for 4 guys in UDP. Here's the code:
<code>
#include<stdio.h>
#include<sys/socket.h>
#include<sys/types.h>
#include<arpa/inet.h>
...
1
vote
1answer
142 views
sendto returning EINVAL on Mac OS X 10.8
I had a program that worked properly with Mac OS 10.6 but inexplicably fails in 10.8. The gist of it is that sendto is now returning -1 and setting errno to EINVAL (22). What's going wrong?
1
vote
1answer
121 views
script via windows sendto fails with more than 20 items
I've made a little script so I can select some files in Explorer (on Windows XP), right click, and Sendto. The script works fine for up to 20 files, but fails when 21 or more files are selected. Why ...
0
votes
2answers
208 views
Sendto() still return me 0 bytes sent [closed]
Some days ago i wrote a post about an error returned from sendto() .
It returned me 0 bytes written tough i pass a non-null value as length.
void caught_packet(u_char *user_args,const struct ...
-3
votes
1answer
231 views
Sendto() Function returns 0 bytes sent [closed]
I'm making a simple program for Syn Stealth Scan countermeausuring.
When i call sendto() function , to send my new_packet buffer through network i get 0 bytes sent.
I would like to know if it can ...
0
votes
0answers
151 views
“Send to” a folder over to a batch script not behaving as expected
I have a simple batch script take.cmd
echo %1
I've then created a shortcut to it in the C:\Users\abc\AppData\Roaming\Microsoft\Windows\SendTo folder. Specifically the shortcut and not the batch ...
0
votes
1answer
222 views
Why udp sendto become so slow when the input data size increase a little?
I have a strange question.
I did the following test on android:
i=0;
while(i< PACKET_NUMBER)
{
//UDP send packets
if( sendto(sockfd,buffer,strlen(buffer),0, (struct sockaddr *)&serv_addr, ...
0
votes
1answer
167 views
Why are the buffers in VxWorks sendto() and send() functions of different types, and how do I handle them in the same manner?
In VxWorks, sendto() is defined as:
int sendto
(
int s, /* socket to send data to */
caddr_t buf, /* pointer to data buffer */
int bufLen, /* ...
0
votes
2answers
121 views
sendto pid and groups
I'm trying to understand this line from an strace on linux:
sendto(10, "\24\0\0\0\26\0\1\3\233\274\362O\0\0\0\0\0\0\0\0", 20, 0, {sa_family=AF_NETLINK, pid=0, groups=00000000}, 12) = 20
I have ...
0
votes
2answers
313 views
How I can use windows's SendTo option in my C# Application using datagridview
i am listing files from directories on click on that specific folder name, when files show in datagridview. Now using context menu i want to add this sendto option in that context menu and want to ...
0
votes
1answer
222 views
send: invalid argument
Hi i have a problem with this line of code. I must take a packet to a port and resend to interface(ex:eth0). My program succefully take packet from the port but when i resend (with send()) to ...
3
votes
1answer
945 views
Invalid argument in sendto when using interface name to set IP_MULTICAST_IF
I am writing a small program that sends and receive multicast packets.I need to set the outgoing interface with its name (e.g. eth0) rather than its address. Therefore I have to use struct ip_mreqn ...
0
votes
0answers
218 views
udhcpc: sendto: Message too long
I am trying to get an address using udhcpc on Angstrom Linux but I get
root@beagleboard:~# udhcpc -i usb0
udhcpc (v1.13.2) started
Sending discover...
udhcpc: sendto: Message too long
...
This is ...
0
votes
1answer
164 views
cocoaAsync:udp sendto success but Wireshark can't capture out data
I'm using cocoaAsync to handle udp communication.
When i use the sendData API of cocoaAsync ,I'm sure sendto is success,from the log. But I can't see any output data from Wireshark .
This is not ...
0
votes
1answer
1k views
sendto() - UDP unicast in C
I have the function below that sends the message to the next_hop (e.g. 192.168.0.10) as UDP unicast. When I compile the code I get the following warning passing argument 2 of 'sendto' makes pointer ...
0
votes
2answers
1k views
android ndk sockets Network Unreachable
I don't know if this is in the way I'm handling Android, or a problem with my native code, or both.
I am setting up a udp socket in C++ (wrappers generated by swig):
udpSocket = socket(AF_INET, ...
0
votes
2answers
664 views
sendto() : Bad file descriptor in UDP - IPv6
static void app(const char *address, int port, char *name)
{
int sock;
struct addrinfo server;
sock = init_connection(address,port,&server);
char buffer[BUF_SIZE];
write_server(sock, ...
0
votes
1answer
196 views
recvfrom() returns sender port as 0 (zero)
I have a simple UDP Server and Client.
Client creates a DGRAM socket, binds it (explicitly) (even through it is not required), prints out the port it got bound to using getsockname() (non-zero) and ...
0
votes
0answers
125 views
Port-forwarded and used sendto and recvfrom, yet no result
I asked a question here and received answers quite satisfying. But, when I tried to port forward (which I successfully did) and run the application, the results were same as before - a bunch of ...
1
vote
3answers
2k views
ICMP packets are not being sent C
I'm trying to create an ICMP ping test program in C but am having difficulties with successfully sending the packets. The sendto function returns the # of bytes and everything but no packets are ...
1
vote
2answers
408 views
Mail send by xpages form change group by user of group in sendTo field
I developed an application that has a form where this form once completed is sent by e-mail as the list of selected group or user in the container. The problem is that when I choose to send e-mail to ...
1
vote
1answer
192 views
Socket C++ program successfully compiled crashes at runtime
I've been struggling with this for hours, but I couldn't manage to find out what am I doing wrong. This is a very simple program that SHOULD send out a simple UDP packet to a given IP on a given port. ...
3
votes
1answer
3k views
unix socket error 14: EFAULT (bad address)
I have a very simple question, but I have not managed to find any answers to it all weekend. I am using the sendto() function and it is returning error code 14: EFAULT. The man pages describe it as:
...
0
votes
1answer
277 views
UDP sendto() became very low, python
once i run a .py to send 10000 UDP(lengh is: 110) using socket sendto(), a server receive about 400 msgs quickly, and later became very slow for more than 10s each msg.
it is weird if i run the .py ...
0
votes
0answers
343 views
How do udp sockets actually work internally?
I am trying to reduce packets manipulation to its minimum in order to improve efficiency of a specific program i am working on but i am struggling with the time it takes to send through a udp socket ...
0
votes
2answers
2k 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
500 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 ...
1
vote
1answer
835 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 ...
3
votes
1answer
256 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 ...
7
votes
3answers
782 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 ...
