0
votes
1answer
24 views
multicast ip address - blocked in call to recvfrom
i am writing a simple multicast application. i intend to run it on localhost.
i have done the following:
char *maddr;
.
.
.
sendfd = socket(...);
struct sockaddr_in sasend;
sase …
0
votes
3answers
62 views
what ip address does accept return
see the following code:
accept(sockfd, (struct sockaddr*)&cliaddr, &slen);
cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100);
my client connects from loc …
4
votes
3answers
150 views
Best practices of high-performance network applications
While testing out a UDP multicast server that I've written on Windows 7 Ultimate x64, I came across a most curious thing. Playing music with foobar2000 in the background significan …
0
votes
5answers
47 views
Private Network (as in IPv4) question
I am working on an embedded TCP/IP4 stack and HTTP/SNMP/SMTP stuff.
It functionally works but I want to make it work faster on LAN.
Because of the Nagle's Algorithm and the delayed …
1
vote
1answer
67 views
Can select() be used for clients, not just servers?
I'd like to make a TCP client that makes multiple connections while a select() loop that receives data from them is running in a separate thread. I'm not sure this is possible, tho …
0
votes
3answers
64 views
Confusion in htons- little endian/ big endian
When I send a integer variable from one process to other through socket, and then printing the value at received end, the value is still the same without using ntohl/htonl, then wh …
1
vote
1answer
49 views
Select() problems in C (windows 7)
I am trying to create a server which uses select() to handle multiple clients, as opposed to multi-threading which I have already accomplished. However select() just doesn't seem t …
1
vote
1answer
61 views
How to create a Boost.Asio socket from a native socket?
I am merely trying to create a boost ip::tcp::socket from an existing native socket. In the assign function, the first parameter must be a "protocol_type" and the second must be a …
1
vote
4answers
112 views
Packet Sniffing using Raw Sockets in linux in c
I need to write packet sniffer in Linux that detect http packet that send and save the url that request .
I see code in security-freak
and run related code . This code run and on …
1
vote
1answer
35 views
socket “read” hanging if the MacBook sleeps more than 10 minutes
I am writing an app, where a socket is connecting to a host and downloading a file.
The application runs in Mac.
Now, while the app is downloading, if I put the MacBook in sleep m …
0
votes
2answers
35 views
How to implement server-sided applications that can process user’s inputs?
There are some web-based services such as converting .flv files into .mp3 files, .doc files into .pdf files, etc. These are the servers that take files from the user and apply resp …
1
vote
3answers
54 views
Python, Pygame, Pyro: How to send a surface over a network?
I am working on a project in python using pygame and pyro. I can send data, functions, classes, and the like easily. However, I cannot send a surface across the wire without it dyi …
2
votes
1answer
35 views
Lots of ports with little data, or one ports with lots of data?
I've been checking out using a system called ROS (http://www.ros.org) for some work.
There are lots of different types of data that get sent between network nodes in ROS.
You defi …
1
vote
3answers
61 views
Running a simple TCP server with poll(), how do I trigger events “artificially”?
I have a fairly basic TCP server keeping track of a couple connections and recv'ing data when it's available. However, I'd like to artificially trigger an event from within the pro …
1
vote
2answers
50 views
Netty vs Apache MINA
Pros/Cons of using either ? They both provide roughly the same functionality. Which should I choose to develop my high performance TCP server ?
