active questions tagged winsock2 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:30:36Zhttp://stackoverflow.com/feeds/tag/winsock2http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1688547/windows-rsvp-qos-service-is-stopped-when-no-qos-socket-active-can-that-be-change0Windows RSVP QoS service is stopped when no QoS-socket active. Can that be changed?leiflundgren2009-11-06T16:05:43Z2009-11-13T15:45:20Z
<p>We have a program that uses QoS-sockets, our softphone application uses QoS for the RTP.</p>
<p>That application is normally left running, sometimes however it is restarted. (Stop, wait 300ms, start.)</p>
<p>We have found that when the softphone-application is stopped that the last one useing QoS on the server, so the RSVP QoS-service on windows is stopped as well.</p>
<p>When we restart our application the RSCP QoS-service normally starts really fast, however sometimes the service start takes a full 30 seconds, causing our application to start slowly as well.</p>
<p>Anyone know if I can configure the service not to stop each time?</p>
<p>The computer is Windows XP SP3, with Windows Firewall turned on. (Our application do have an exception in the firewall.)</p>
<p>Regards<br>
Leif</p>
http://stackoverflow.com/questions/1570922/winsock2-how-to-allow-only-one-client-connection-at-a-time-by-using-listens-bac1Winsock2: How to allow ONLY one client connection at a time by using listen's backlog in VC++ immi2009-10-15T08:02:11Z2009-10-15T12:42:21Z
<p>Hi Everyone,</p>
<p>I want to allow only one connection at a time from my TCP server. Can you please tell, how to use listen without backlog length of zero. </p>
<p>I m using the code(given below), but when i launch 2 client one by one, both gets connected. I m using VC++ with winsock2.</p>
<p>listen(m_socket,-1);</p>
<p>passing zero as backlog is also not working.</p>
<p>Waiting for ur reply.</p>
<p>Regards,<br>
immi</p>
http://stackoverflow.com/questions/1484744/calling-winsock-functions-using-loadlibrary-and-getprocaddress0Calling WinSock functions using LoadLibrary and GetProcAddressChris T2009-09-27T23:16:42Z2009-09-28T06:40:47Z
<p>Basically I have a header file like this:</p>
<pre><code>#if WIN32
typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData);
typedef SOCKET (WINAPI *MakeSocket)(IN int af, IN int type, IN int protocol, IN LPWSAPROTOCOL_INFOW lpProtocolInfo, IN GROUP g, IN DWORD dwFlags );
typedef DWORD (WINAPI *SocketSendFunc) (IN SOCKET s,__in_bcount(len) const char FAR * buf, IN int len,IN int flags);
typedef DWORD (WINAPI *GetLastSocketErrorFunc)();
typedef DWORD (WINAPI *ShutdownSocketFunc)(SOCKET hSocket, int how);
typedef DWORD (WINAPI *CloseSocketFunc)(SOCKET hSocket);
#endif
</code></pre>
<p>and then I do something like this:</p>
<pre><code> SocketStartup* start = (SocketStartup*)GetProcAddress(socketLib,"WSAStartup");
getLastSocketError = (GetLastSocketErrorFunc*)GetProcAddress(socketLib,"WSAGetLastError");
closeSocket = (CloseSocketFunc*)GetProcAddress(socketLib,"closesocket");
shutdownSocket = (ShutdownSocketFunc*) GetProcAddress(socketLib,"shutdown");
socketSend = (SocketSendFunc*) GetProcAddress(socketLib, "send");
if(start == 0 || getLastSocketError == 0 || closeSocket == 0 || shutdownSocket == 0
|| socketSend == 0)
{
printf("[!] Failed to find entry points in Ws2_32.dll. Error Code: %d\n", GetLastError());
CloseLibraries();
ErrorExit();
}
WSADATA wsdata;
//ZeroMemory(&wsdata,sizeof(wsdata));
printf("error: %d\n", GetLastError());
WORD test = MAKEWORD(1,1);
int result = (*start)(test, &wsdata);
return result == 0;
</code></pre>
<p>However, when I call this function (the line with (*start)(test, &wsdata)) I get this error message:</p>
<blockquote>
<p>Unhandled exception at 0x7868146a in
sockets.exe: 0xC0000005: Access
violation.</p>
</blockquote>
<p>I tried changing the calling convention (__cdecl, WINAPI, WSAAPI) but it always ends with the same error message.</p>
http://stackoverflow.com/questions/1400658/how-can-i-list-for-each-windows-tcp-socket-the-status-of-solinger0How can I list for each Windows TCP socket the status of SO_LINGER?Eddie2009-09-09T16:17:58Z2009-09-09T22:55:38Z
<p>I want to verify that a group of sockets do (or do not) have the SO_LINGER option set on them, but the end I care about isn't my program. Basically, my program is getting an unexpected network reset (RST) and I believe it's because the server is setting SO_LINGER and the client isn't pulling the data fast enough.</p>
<p>I can find plenty of ways to list the sockets and their endpoints, but I can't find a way to enumerate the sockets on a Windows platform and then get the configuration settings for each end of the socket that is on that server. And obviously, something like SO_TIMEOUT or SO_LINGER cannot be captured in a Wireshark trace.</p>
<p>How can I do this? Any solution (C, C++, C#, even VB if necessary) is welcome. Thanks.</p>
http://stackoverflow.com/questions/1072510/delphi-tclientsocket-replacement-using-winsock2-and-iocp1Delphi TClientSocket replacement using winsock2 and IOCP?Bruce2009-07-02T04:35:44Z2009-07-02T16:47:16Z
<p>Is there such a thing? It needs to be asynchronous (no Indy).</p>
http://stackoverflow.com/questions/971713/linux-to-windows-c-byte-array1linux to windows C++ byte arrayBert2009-06-09T18:24:54Z2009-06-10T17:21:40Z
<p>Hello,</p>
<p>I have to replicate the following Java functionality in C++ to get data from Linux to Windows. Is Winsock2 the best way to go?.</p>
<p>Also, any reference code to suggest?</p>
<p>TIA,
B</p>
<pre>
import java.nio.ByteBuffer;
public class MessageXdr {
private ByteBuffer buffer;
private int size;
// taille max corps de message
private static final int T_MAX_CORPS_MSG = 16384;
public MessageXdr() {
buffer = ByteBuffer.allocate(4 * T_MAX_CORPS_MSG);
size =0;
}
public MessageXdr(byte[] array)
{
ByteBuffer tmpBuffer = ByteBuffer.wrap(array);
buffer = tmpBuffer.asReadOnlyBuffer();
size = array.length;
}
public int getSize()
{
return size;
}
public int getPosition()
{
return buffer.position();
}
public byte[] getArray()
{
return buffer.array();
}
public void resetBuffer()
{
size = 0;
buffer.rewind();
}
public int readInt()
{
int retour = buffer.getInt();
return retour;
}
public long readUnsignedInt()
{
ByteBuffer tmp = ByteBuffer.allocate(8);
tmp.putInt(0);
tmp.putInt(buffer.getInt());
return tmp.getLong(0);
}
public float readFloat()
{
float retour = buffer.getFloat();
return retour;
}
public void writeInt(int v)
{
buffer.putInt(v);
size+=4;
}
public void writeFloat(float v)
{
buffer.putFloat(v);
size+=4;
}
}
</pre>
http://stackoverflow.com/questions/873978/c-simple-server-which-sends-simple-html-to-clients0C++ - Simple server which sends simple HTML to clientskitchen2009-05-17T05:47:54Z2009-05-21T14:06:13Z
<p>Now, I'm just fooling around with this and I'm not sure as to why this isn't working.</p>
<pre><code>#include <winsock2.h>
#include <ws2tcpip.h>
#include <iostream>
#include <cassert>
const char html[] = "HTTP/1.1 200 OK\r\n"
"Connection: close\r\n"
"Content-type: text/html\r\n"
"\r\n"
"<html>\r\n"
"<head>\r\n"
"<title>Hello, world!</title>\r\n"
"</head>\r\n"
"<body>\r\n"
"<h1>Hello, world!</h1>\r\n"
"</body>\r\n"
"</html>\r\n\r\n";
int main() {
WSADATA wsa;
assert( WSAStartup( MAKEWORD( 2, 2 ), &wsa ) == 0 );
addrinfo *res = NULL;
addrinfo hints;
ZeroMemory( &hints, sizeof( hints ) );
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
hints.ai_flags = AI_PASSIVE;
assert( getaddrinfo( NULL, "80", &hints, &res ) == 0 );
SOCKET s = socket( res->ai_family, res->ai_socktype, res->ai_protocol );
assert( s != INVALID_SOCKET );
assert( bind( s, res->ai_addr, (int)res->ai_addrlen ) != SOCKET_ERROR );
assert( listen( s, SOMAXCONN ) != SOCKET_ERROR );
SOCKET client = accept( s, NULL, NULL );
assert( client != INVALID_SOCKET );
char buffer[512];
int bytes;
bytes = recv( client, buffer, 512, 0 );
for ( int i = 0; i < bytes; ++i ) {
std::cout << buffer[i];
}
assert( send( client, html, strlen( html ) - 1, 0 ) > 0 );
assert( shutdown( client, SD_BOTH ) != SOCKET_ERROR );
closesocket( client );
WSACleanup();
return 0;
}
</code></pre>
<p>When I compile and run this and then navigate to 127.0.0.1 in my browser I get this in my console:</p>
<blockquote>
<p>GET / HTTP/1.1</p>
<p>Host: 127.0.0.1</p>
<p>Connection: keep-alive</p>
<p>User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/530.5 (K HTML, like Gecko) Chrome/2.0.172.8 Safari/530.5</p>
<p>Cache-Control: max-age=0</p>
<p>Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,<em>/</em>;q=0.5 </p>
<p>Accept-Encoding: gzip,deflate,bzip2,sdch</p>
<p>Accept-Language: en-US,en;q=0.8</p>
<p>Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3</p>
</blockquote>
<p><strong>EDIT</strong> - I've updated the HTML I'm sending. I just tested this with Mozilla Firefox and Google Chrome and it works in Firefox, but not Chrome!</p>
<p><strong>EDIT 2</strong> - So it seems that the reason it was working on Firefox, but not Chrome, was because Firefox displays the HTML as its received, while Chrome waits for the connection to close before doing any rendering. I added the code to close the socket and it worked. I've updated my code with the working source.</p>