0
votes
4answers
46 views
Whats wrong with my UDP Client Server?
I have a UDP Server that should sit and wait for a client to connect to it, and send it a string of a filename. Right now I just want it to echo back the filename to the client. Here is my code
…
4
votes
6answers
99 views
Fastest socket method for a lot of data between a lot of files
I'm building a socket application that need to shuffle a lot of small/medium sized files, something like 5-100kb sized files to a lot of different clients (sort of like a web server, but still not …
0
votes
4answers
68 views
UDP Sockets in C
I'm working on a homework problem for class. I want to start a UDP Server that listens for a file request. It opens the file and sends it back to the requesting client with UDP.
Heres the server …
5
votes
2answers
40 views
Efficient Linux sockets (DMA/zero-copy)
Hello,
I'm building a very high performance Linux server (based on epoll, non-blocking sockets, and async disk IO [based on io_submit/io_getevents/eventfd]). Some of my benchmarks show that the way I …
1
vote
2answers
45 views
How to scan remote host port that in used?
this is the code that i get so far...
import java.net.*;
public class PortScanner {
public static void main(String args[]) {
int startPortRange = 0;
int stopPortRange = 0;
…
1
vote
2answers
29 views
Set timeout for winsock recvfrom
I'm trying to set up a blocking socket to timeout after 16 ms of trying to recvfrom() on a port. Platform is Windows. I've looked at tons of examples online and it seems really simple I just can't …
0
votes
2answers
35 views
Java Sockets over WLAN?
I have 2 windows PC's connected over an ad-hoc wlan network.
Using this existing connection can I communicate between these pc's via sockets?
Can I open a server socket on one pc and make the other pc …
0
votes
1answer
13 views
Socket Server/Client conflict when running on same system
Okay - I'm beaten.
I have a (PHP-CLI) server written using PHP's socket_* functions. I can connect just fine to it using Putty and it works as expected.
However my PHP-CLI client does not work …
0
votes
1answer
19 views
SetHandleInformation() Linux equivalent
Hi,
for a TCP Server Class I need a Linux function, which does what SetHandleInformation(, HANDLE_FLAG_INHERIT, 0) do under Windows.
I've already searched the web after a Linux equivalent, but I …
0
votes
0answers
20 views
How to restrict what files a desktop app can download from an online server
The closest example I can think of is iTunes. I'm thinking about a system where a server stores loads of files, and each user only has access to those they have paid for. Using a desktop app, they can …
0
votes
1answer
21 views
Looking for a solid client side sockets library
Nothing too fancy, but the following would be nice for .NET:
Be able to instantiate the object and hook up the MessageReceived and ConnectionChanged events (or ones with similar purposes).
Be able …
2
votes
3answers
38 views
Python: How to shutdown a threaded HTTP server with persistent connections (how to kill readline() from another thread)?
I'm using python2.6 with HTTPServer and the ThreadingMixIn, which will handle each request in a separate thread. I'm also using HTTP1.1 persistent connections ('Connection: keep-alive'), so neither …
0
votes
1answer
12 views
FlashLite 2.x/3.0 Cross Domain policy file
As per my understanding of the Adobe docs for a cross domain request by an swf, two types of policy files are required on the server:
URL policy file: this is named "crossdomain.xml" and stored in …
0
votes
3answers
42 views
Sending UDP packet in Linux Kernel
Hi Guys,
For a project, I'm trying to send UDP packets from Linux kernel-space. I'm currently 'hard-coding' my code into the kernel (which I appreciate isn't the best/neatest way) but I'm trying to …
2
votes
6answers
140 views
How can I tell if a socket buffer is full?
How can I tell if a read socket buffer is full or a write socket buffer is empty?
Is there a way I can get the status of a socket buffer without a system call?
UPDATE: How about this: I'd like to …
