0

Winsockライブラリを利用してC(Windows)で以下のソケットサーバーを作成しました。

#undef UNICODE

#define WIN32_LEAN_AND_MEAN

#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdio.h>
#include <stdlib.h>

// Need to link with Ws2_32.lib
#pragma comment(lib, "WS2_32.lib")

#define DEFAULT_PORT "27015"
#define DEFAULT_BUFLEN 512

int __cdecl main(void) {

WSADATA wsaData;
int iResult;

SOCKET ListenSocket = INVALID_SOCKET;
SOCKET ClientSocket = INVALID_SOCKET;

struct addrinfo *result = NULL; 
struct addrinfo hints;

char recvbuf[DEFAULT_BUFLEN];
int iSendResult;
int recvbuflen = DEFAULT_BUFLEN;

// Initialize Winsock
iResult = WSAStartup(MAKEWORD(2,2), &wsaData);
if(iResult != 0) {
    printf("WSAStartup failed: %d\n", iResult);
    return 1;
}

ZeroMemory(&hints, sizeof(hints));
hints.ai_family = AF_INET;
hints.ai_socktype = SOCK_STREAM;
hints.ai_protocol = IPPROTO_TCP;
hints.ai_flags = AI_PASSIVE;

// Resolve the local address and port to be used by the server
iResult = getaddrinfo(NULL, DEFAULT_PORT, &hints, &result);
if(iResult != 0) {
    printf("getaddrinfo failed: %d\n", iResult);
    WSACleanup();
    return 1;
}

// Create a SOCKET for the server to listen for client connections
ListenSocket = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
if(ListenSocket == INVALID_SOCKET) {
    printf("Error at socket(): %ld\n",  WSAGetLastError());
    freeaddrinfo(result);
    WSACleanup();
    return 1;
}

// Set up a TCP listening socket
iResult = bind(ListenSocket, result->ai_addr, (int)result->ai_addrlen);
if (iResult == SOCKET_ERROR) {
    printf("bind failed with error: %d\n", WSAGetLastError());
    freeaddrinfo(result);
    closesocket(ListenSocket);
    WSACleanup();
    return 1;
}
freeaddrinfo(result), // to free the memory allocated by getaddrinfo function

// Listen on a socket
iResult = listen(ListenSocket, SOMAXCONN);
if(iResult == SOCKET_ERROR) { // SOMAXCONN indicates the backlog value, maximum length of the queue of pending connections to accept
    printf("Listen failed with error: %d\n", WSAGetLastError());
    closesocket(ListenSocket);
    WSACleanup();
    return 1;
}

// Accept connection on a socket
ClientSocket = accept(ListenSocket, NULL, NULL);
if(ClientSocket == INVALID_SOCKET) {
    printf("accept failed: %d\n", WSAGetLastError());
    closesocket(ListenSocket);
    WSACleanup();
    return 1;
}
closesocket(ListenSocket); // No longer need server socket

// Receive until the peer shuts down the connection
do {
    iResult = recv(ClientSocket, recvbuf, recvbuflen, 0);
    if(iResult > 0) {
        printf("Bytes received: %d\n", iResult);

        // Echo buffer back to the sender
        iSendResult = send(ClientSocket, recvbuf, iResult, 0);
        if(iSendResult == SOCKET_ERROR) {
            printf("send failed: %d\n", WSAGetLastError());
            closesocket(ClientSocket);
            WSACleanup();
            return 1;
        }
        printf("Bytes sent: %d\n", iSendResult);
    } else if(iResult == 0) {
        printf("Connection closing...\n");
    } else {
        printf("recv failed: %d\n", WSAGetLastError());
        closesocket(ClientSocket);
        WSACleanup();
        return 1;
    }
} while(iResult > 0);

// Shutdown the send half of the connection since no more data will be sent
iResult = shutdown(ClientSocket, SD_SEND);
if(iResult == SOCKET_ERROR) {
    printf("shutdown failed: %d\n", WSAGetLastError());
    closessocket(ClientSocket);
    WSACleanup();
    return 1;
}

//cleanup
closesocket(ClientSocket);
WSACleanup();

return 0;
}

そして、それをコンパイルしようとすると、Winsockライブラリのすべての関数に対して次のエラーが発生します。

C:\Users\Victor\AppData\Local\Temp\ccOwFjRF.o:socketServer.c:(.text+0x4a): undef
ined reference to `WSAStartup@8'

Winsockライブラリがあるディレクトリをパスに追加しましたが、何か他のことをする必要があるようです。誰かが問題について何か考えを持っていますか?ありがとう。

4

1 に答える 1

2

コンパイルを成功させるには、次の変更を実行する必要があります。

  1. ソースファイルでは#define _WIN32_WINNT 0x0501、ヘッダーを含める前に定義する必要があります。詳細については、この以前の投稿を参照してください。

  2. ソースにタイプミスがあります。行番号に交換closessocketしてください。closesocketソースファイルの121。

  3. 次のコマンドでコンパイルします

    gcc -o socketServer socketServer.c -lws2_32 -lwsock32 -L $MinGW\lib

$MinGWMinGWsoftareのインストールディレクトリはどこにありますか

これらの変更により、コードを正常にコンパイルできるようになりました。

于 2013-03-18T16:25:12.420 に答える