-
as seen on Super User
- Search for 'Super User'
I'm trying to customize my sendto shortcut following instructions posted on a How-To Geek article. The problem is that any shortcut I drop into the sendto folder doesn't appear as a shortcut when I right-click-sendto.
If I copy the actual application (say, Notepad) into the Sendto folder, it will…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
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 over UDP and had to implement a fragmentation system to split my messages into small data chunks…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have a list<struct sockaddr_in> _peers I'd like to use for sendto()
the list is filled this way
struct hostent *hp;
hp = gethostbyname(hostname);
sockaddr_in sin;
bzero(&sin, sizeof(sin));
sin.sin_family = AF_INET;
sin.sin_port = htons(port);
sin.sin_addr.s_addr =…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
When I open a raw socket is OS X, construct my own udp packet (headers and data), and call sendto(), I get the error "Invalid Argument". Here is a sample program "rawudp.c" from the web site http://www.tenouk.com/Module43a.html that demonstrates this problem. The program (after adding string and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
When I open a raw socket is OS X, construct my own udp packet (headers and data), and call sendto(), I get the error "Invalid Argument". Here is a sample program "rawudp.c" from the web site http://www.tenouk.com/Module43a.html that demonstrates this problem. The program (after adding string and…
>>> More