91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C中handle與HTTP服務器實現

發布時間:2024-10-01 17:10:42 來源:億速云 閱讀:86 作者:小樊 欄目:編程語言

在C語言中,實現一個簡單的HTTP服務器需要處理HTTP請求和響應。以下是一個基本的示例,展示了如何使用C語言和libevent庫創建一個簡單的HTTP服務器,該服務器能夠處理GET和POST請求。

首先,確保已經安裝了libevent庫。可以通過包管理器安裝,例如在Ubuntu上使用以下命令:

sudo apt-get install libevent-dev

接下來,創建一個名為http_server.c的文件,并添加以下代碼:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <event2/event.h>

#define PORT 8080
#define BUFFER_SIZE 1024

void handle_request(struct evhttp_request *req, void *arg);
void send_response(struct evhttp_request *req, const char *content);

int main(void) {
    struct event_base *base;
    struct evhttp *http;

    base = event_base_new();
    if (!base) {
        fprintf(stderr, "Could not initialize event base\n");
        return 1;
    }

    http = evhttp_new(base);
    if (!http) {
        fprintf(stderr, "Could not create HTTP handler\n");
        event_base_free(base);
        return 1;
    }

    evhttp_set_gencb(http, handle_request, NULL);
    evhttp_bind_socket(http, "0.0.0.0", PORT);

    printf("Serving on port %d...\n", PORT);

    event_base_dispatch(base);

    evhttp_free(http);
    event_base_free(base);

    return 0;
}

void handle_request(struct evhttp_request *req, void *arg) {
    const char *content = "Hello, World!";

    if (strcmp(evhttp_request_get_method(req), "GET") == 0) {
        send_response(req, content);
    } else if (strcmp(evhttp_request_get_method(req), "POST") == 0) {
        // Handle POST request
        struct evbuffer *body = evbuffer_new();
        size_t len;
        const char *post_data = evhttp_request_get_body(req);
        evbuffer_add(body, post_data, strlen(post_data));
        len = evbuffer_get_length(body);
        send_response(req, content);
        evbuffer_free(body);
    } else {
        send_response(req, "Method Not Allowed");
    }
}

void send_response(struct evhttp_request *req, const char *content) {
    struct evbuffer *response = evbuffer_new();
    evbuffer_add(response, content, strlen(content));
    evhttp_send_response(req, HTTP_200_OK, response);
    evbuffer_free(response);
}

編譯并運行代碼:

gcc -o http_server http_server.c -levent
./http_server

現在,服務器應該在端口8080上運行。你可以使用瀏覽器或命令行工具(如curl)向服務器發送GET和POST請求。例如,使用curl發送GET請求:

curl http://localhost:8080

這將返回"Hello, World!"響應。要發送POST請求,請使用以下命令:

curl -d "key=value" http://localhost:8080

請注意,這個示例僅支持基本的GET和POST請求處理。要擴展此服務器以支持更多功能,如處理多個路徑、設置HTTP頭、處理錯誤等,你需要進一步學習和實現。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

容城县| 浏阳市| 镶黄旗| 信宜市| 韩城市| 吉水县| 莱阳市| 灵石县| 页游| 东丽区| 镇巴县| 黄山市| 常山县| 南木林县| 伊春市| 商洛市| 平江县| 姜堰市| 遂溪县| 碌曲县| 密云县| 松滋市| 阿拉尔市| 崇义县| 于田县| 明溪县| 邹城市| 当雄县| 林周县| 苍溪县| 樟树市| 柳林县| 麻阳| 府谷县| 汉寿县| 上蔡县| 老河口市| 牡丹江市| 临城县| 安阳县| 安徽省|