0

cで小さなhttpサーバーを作成しようとしていますが、httperfでCONNRESETエラーが発生しました。なぜですか?

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>

#include <unistd.h>
#include <errno.h>
#include <sys/types.h> 
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <fcntl.h>

#define SOCKERROR -1

#define SD_RECEIVE 0
#define SD_SEND 1
#define SD_BOTH 2

int server;
int client;

...

int main(int argc, char *argv[])
{
    int status;

    int accepted;

    struct addrinfo hint;
    struct addrinfo *info;

    struct sockaddr addr;
    socklen_t addrsize;

    int yes = 1;

    ...

    // client

    addrsize = sizeof addr;

    while (1)
    {
        memset(&accepted, 0, sizeof accepted);
        memset(&addr, 0, sizeof addr);

        accepted = accept(server, &addr, &addrsize);

        if (accepted == SOCKERROR) {
            warn("Accept", errno);
        } else {
            shutdown(accepted, SD_SEND);
            close(accepted);
        }
    }

    // shutdown

    ...

    return EXIT_SUCCESS;
}
4

2 に答える 2

3

すぐにソケットを閉じますaccept。そのため、接続はもう一方の端でリセットされます。

HTTPクライアントと通信する場合は、着信HTTP要求を解析し、有効なHTTPデータで応答する必要があります。(警告:それは些細なことではありません。)

この記事を読んでください:nweb:小さくて安全なWebサーバー(静的ページのみ)。たとえば、最小限のHTTPサーバーで実行する必要があることを詳しく説明しています。

于 2011-05-19T09:12:16.703 に答える
1

OK、あなたの助けに感謝します、私はクライアントソケットを閉じる前にこれを追加しました、そしてこれ以上のCONNRESETエラーはありません:

char readBuffer[128];
char *sendBuffer = "HTTP/1.0 200 OK\r\n"
    "Content-Type: text/html\r\n"
    "Content-Length: 30\r\n\r\n"
    "<html><body>test</body></html>";

do {
    status = recv(accepted, readBuffer, sizeof readBuffer, MSG_DONTWAIT);
} while (status > 0);

send(accepted, sendBuffer, (int) strlen(sendBuffer), 0);
于 2011-05-19T09:32:01.510 に答える