0
votes
2answers
14 views
Receiving image through winsocket
hey guys,
i have a proxy server running on my local machine used to cache images while surfing. I set up my browser with a proxy to 127.0.0.1, receive the HTTP requests, take the d …
0
votes
1answer
28 views
IO Completion ports: How does WSARecv() work?
Hi,I want to write a server using a pool of worker threads and an IO completion port. The server should processes and forwards messages between multiple clients. The 'per client' d …
2
votes
1answer
75 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 …
2
votes
2answers
52 views
Asynchronous address resolution in winsock?
Looking into asynchronous address resolution in winsock it seems that the only two options are either to use the blocking gethostbyname on a seperate thread, or use WSAAsyncGetHost …
2
votes
2answers
57 views
Rejecting a TCP connection before it’s being accepted?
There are 3 different accept versions in winsock. Aside from the basic accept which is there for standard compliance, there's also AcceptEx which seems the most advanced version (d …
0
votes
3answers
58 views
How to get internal IP, external IP and default gateway for UPnP
I'm wondering how I'd go about getting the:
Internal IP address;
External IP address; and
Default gateway
in Windows (WinSock) and Unix systems.
Thanks in advance,
0
votes
3answers
41 views
Qt (Creator) with WinSocks (ws2_32)
I want to use an older code-fragment in my Qt-project, which is using WinSocks.
I created my program with Qt Creator and I don't know, how I can link to the ws2_32-Library. I alre …
0
votes
0answers
29 views
getaddrinfo() returning only ::1 as IPV6 address,
I'm using getaddrinfo() to return all assigned IP addresses (both IPv4 and
IPv6) for my local machine. I see that on XP, getaddrinfo() only returns ::1
( I installed the IPV6 sta …
0
votes
1answer
31 views
How to read exact number of bytes from a stream (tcp) socket?
In winsock, both the sync recv and the async WSARecv complete as soon as there is data available in a stream socket, regardless of the size specified (which is only the upper limit …
0
votes
4answers
57 views
WinSock Client C
I have a client using select() to check if there is anything to be received, else it times out and the user is able to send(). Which works well enough. However, the program locks u …
1
vote
2answers
49 views
Statically linking Winsock?
I'm using Winsock 1.1 in my project. I include wsock32.lib in "Additional Dependencies".
I'm looking at the DLL project using depends.exe and notice that the DLL depends on wsock3 …
0
votes
2answers
70 views
close() vs. shutdown() with recv()
I have the following code:
Client side:
n=recv(sock,buf,1200,NULL);
Server side:
shutdown(sockk,SD_BOTH);
The problem is, the client side recv is returning 0, meaning gracef …
0
votes
2answers
70 views
C Network Programming - Winsock
Hey,
I have been learning C over the last two weeks, managed to get my head around pointers, arrays and structures.
I am looking to do a bit of socket programming on windows and …
0
votes
2answers
27 views
Use Winsock insde DShow Filter
Hi,
I am trying to develop a DirectShow filter with internet access.
When I try to use Winsock,
1) In TCP, I wait connections but cannot access to server (try with Telnet) and …
0
votes
2answers
27 views
Using .NET to get results from an API
I wanted to use the Rapidshare API in my .NET app, but I am confused on how you send the request and bring back the result. Do you use Winsock or another method?
URLs are like thi …
