Tagged Questions
12
votes
4answers
371 views
Determine between socket and fd
On unix everything is a file approach of function read(), write(), close() is not supported on Win32.
I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2.
...
4
votes
2answers
142 views
C Sockets: Avoiding garbage when socket is closed
I'm programming a server and a client using non blocking sockets (fd_sets and select function) and once the server closes or shuts down a client socket, the client starts receiving a lot of garbage ...
3
votes
3answers
312 views
winsock compile error
The following errors are from a file with just windows and winsock2 included.
C:\Users\ioil\Desktop\dm\bin>dmc sockit.c
typedef struct fd_set {
^
...
2
votes
3answers
186 views
Best way to write a ftp client program to list files on the server?
I am trying to write a client-server program in C in windows. The objective is to receive the directory listing from the server. Now I was trying to develop the client-server in such a way to utilize ...
2
votes
1answer
470 views
Sending data from Java to C using socket programming
i am making a program that sends a string from a Java client to a C server using WinSock2. I am using DataOutputStream to send the data through the socket.
The C server, acknowledges the bytes ...
1
vote
3answers
168 views
socket() return -1 but errno 0
I tried to create a UDP socket on mingw, but socket() return -1, with errno = 0. Strange.
I have included winsock2.h.
Initially I had compilation error "undefined reference to socket@12", after ...
1
vote
1answer
145 views
WSAPoll on named fd :: need suggestions how to rewrite it
I've some POSIXC code that I'm porting to windows (WinSocks 2.2) and I'm having problems with MS implementation of (not only) poll().
I have some experience with POSIX sockets, but I'm quite new to ...
1
vote
3answers
564 views
Why am I getting linker errors for ws2_32.dll in my C program?
I am writing my program in Visual Studio 2010.
I am unable to link a file named ws2_32.dll with my project.
Can anyone tell me how I can do that?
1
vote
2answers
471 views
Handling asynchronous sockets in WinSock?
I'm using a message window and WSAAsyncSelect. How can I keep track of multiple sockets (the clients) with one message window?
1
vote
1answer
600 views
11001 returned on all calls to getaddrinfo()
Having an issue connecting to a device on my network. Whenever I call getaddrinfo() it returns 11001. I have checked this with numerous different IP's in the IP_ADDRESS string (Global Var). I've ...
1
vote
2answers
956 views
Problem using Connect(), send(), recv, with UDP sockets
For my Uni assignment I have to create a fast action paced networked game and so have chosen to use UDP as opposed to TCP. I am aware of a lot of the differences in programming both UDP and TCP and ...
1
vote
1answer
136 views
Is there any way to use getaddrinfo() and freeaddrinfo() and still be the program compatible with legacy versions of Windows?
in the Winsock2 library getaddrinfo() and freeaddrinfo() was only added in Windows XP and on. I know how to replace them in legacy systems, but a conditional use depending on the Windows version won't ...
1
vote
1answer
81 views
Is it possible to use connection proxies using sockets?
I need to connect to a server from an environment with a SSL proxy on, is it possible to handle that environment using just sockets? Is it was a no-SSL proxy, would that be possible?
Thank you very ...
0
votes
0answers
37 views
Select() funtion of winsock is returning 0 for cisco wireless controller
My application is testing devices connectivity using ping (ICMP) functionality. It is working fine for all devices but for a particular device that is CISCO wireless controller it is not able to ping ...
0
votes
1answer
26 views
Win 7 64bit and undefined reference to `getaddrinfo'
I have sample program:
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>
// link with Ws2_32.lib
#pragma comment (lib, "Ws2_32.lib")
//...
if ((err = ...
0
votes
1answer
28 views
Sockets with IPv6
How to create and bind socket using winsock2, which will be receiving only packets which use ipv6 protocol.
Regards
0
votes
1answer
62 views
WinSock's send() always returning 0 bytes sent
I've been experiencing a problem with the Winsock2's function send(). No matter what data I provide it, the send() function always returns 0; eg 0 bytes sent, and no errors. I've google searched for a ...
0
votes
2answers
174 views
Is it possible to not receive a completion for a WSASend call?
Like the title says, is it possible for a successful WSASend call on a socket associated with an I/O completion port to not post a completion for any reason other than the thread ending?
I have a ...
0
votes
3answers
196 views
how to send an image in winsock2, using c
I am writing a very simple webserver in c (winsock2).
I am able to return the contents of my html pages.
Currently, what I am doing is writing the contents of a file into a char* buffer and sending ...
0
votes
6answers
356 views
Receiving all data sent with C sockets
If i write a server, how can I implement the receive function to get all the data sent by a specific client if I don't know how that client sends the data ?
I am using a TCP/IP protocol.
Thanks in ...
0
votes
1answer
813 views
client / server program in c++ problem
I have created a client and server program in c++ based i=on windows sockets.
I have some problem that when i execute the program no message appears on the server end and after that the program ...
0
votes
1answer
341 views
What to use instead of getaddrinfo() and freeaddrinfo() targetting legacy Windows?
By requirement, I'm targeting old legacy Windows systems (9x branch) where getaddrinfo() and freeaddrinfo() are not available.
What can I use instead of that? The code I'm using right now is ...
0
votes
1answer
757 views
Bind Error 10038 with windows socket application in c
I am testing out a Socket Server application in c and I am getting an error on the bind function with code 10038. I looked this up and MSDN says it means:
An operation was attempted on something ...