暫無描述

DavidKorczynski 831b64bdeb Add two new fuzzers (#2412) 4 天之前
.github 32c82492de Add workflow_dispatch trigger to docs deployment workflow 4 天之前
benchmark f29bb15f9d Performance improvement! 1 月之前
cmake c59ef98b3b [cmake] Update modules.cmake to fix cmake error (#2393) 2 周之前
docker 40f7985e02 Update copyright year 3 月之前
docs-src b7e02de4a7 Release v0.40.0 4 天之前
docs-util 7178f451a4 "Building a Desktop LLM App with cpp-httplib" (#2403) 1 周之前
example 464867a9ce WebSocket and Dynamic Thread Pool support (#2368) 1 月之前
scripts 315a87520d Add release script and update .gitignore for work directory 1 周之前
test 831b64bdeb Add two new fuzzers (#2412) 4 天之前
.clang-format 260422b7d7 Format code 6 年之前
.gitattributes 177d8420a1 Added .gitattributes file to prevent git from changing line endings (#1872) 1 年之前
.gitignore 315a87520d Add release script and update .gitignore for work directory 1 周之前
.pre-commit-config.yaml c551e97297 Add .pre-commit-config.yaml 8 月之前
CMakeLists.txt 7489fd3a8b Remove 32-bit limitation (#2388) 3 周之前
Dockerfile f4cc542d4b Fix Dockerfile problem with CMD 7 月之前
LICENSE ca7b942196 Changed license to MIT 8 年之前
README-sse.md c2bdb1c5c1 SSE Client: Update Authorization Header 1 周之前
README-stream.md f6ed5fc60f Add SSL support for proxy connections in open_stream and corresponding test 2 周之前
README-websocket.md 257b266190 Add runtime configuration for WebSocket ping interval and related tests 2 周之前
README.md 511e3ef9e5 Update README.md to enhance TLS backend documentation and clarify platform-specific certificate handling 2 周之前
docker-compose.yml ba638ff38e Update Docker support 1 年之前
generate_module.py 1942e0ef01 Add C++ modules support (#2291) 1 月之前
httplib.h b7e02de4a7 Release v0.40.0 4 天之前
justfile 315a87520d Add release script and update .gitignore for work directory 1 周之前
meson.build c2002f6e06 Make loading system certificates from the Keychain on macOS an opt-out feature (#2377) 1 月之前
meson_options.txt c2002f6e06 Make loading system certificates from the Keychain on macOS an opt-out feature (#2377) 1 月之前
split.py 1942e0ef01 Add C++ modules support (#2291) 1 月之前

README-sse.md

SSEClient - Server-Sent Events Client

A simple, EventSource-like SSE client for C++11.

Features

  • Auto-reconnect: Automatically reconnects on connection loss
  • Last-Event-ID: Sends last received ID on reconnect for resumption
  • retry field: Respects server's reconnect interval
  • Event types: Supports custom event types via on_event()
  • Async support: Run in background thread with start_async()
  • C++11 compatible: No C++14/17/20 features required

Quick Start

httplib::Client cli("http://localhost:8080");
httplib::sse::SSEClient sse(cli, "/events");

sse.on_message([](const httplib::sse::SSEMessage &msg) {
    std::cout << "Event: " << msg.event << std::endl;
    std::cout << "Data: " << msg.data << std::endl;
});

sse.start();  // Blocking, with auto-reconnect

API Reference

SSEMessage

struct SSEMessage {
    std::string event;  // Event type (default: "message")
    std::string data;   // Event payload
    std::string id;     // Event ID
};

SSEClient

Constructor

// Basic
SSEClient(Client &client, const std::string &path);

// With custom headers
SSEClient(Client &client, const std::string &path, const Headers &headers);

Event Handlers

// Called for all events (or events without a specific handler)
sse.on_message([](const SSEMessage &msg) { });

// Called for specific event types
sse.on_event("update", [](const SSEMessage &msg) { });
sse.on_event("delete", [](const SSEMessage &msg) { });

// Called when connection is established
sse.on_open([]() { });

// Called on connection errors
sse.on_error([](httplib::Error err) { });

Configuration

// Set reconnect interval (default: 3000ms)
sse.set_reconnect_interval(5000);

// Set max reconnect attempts (default: 0 = unlimited)
sse.set_max_reconnect_attempts(10);

// Update headers at any time (thread-safe)
sse.set_headers({{"Authorization", "Bearer new_token"}});

Control

// Blocking start with auto-reconnect
sse.start();

// Non-blocking start (runs in background thread)
sse.start_async();

// Stop the client (thread-safe)
sse.stop();

State

bool connected = sse.is_connected();
const std::string &id = sse.last_event_id();

Examples

Basic Usage

httplib::Client cli("http://localhost:8080");
httplib::sse::SSEClient sse(cli, "/events");

sse.on_message([](const httplib::sse::SSEMessage &msg) {
    std::cout << msg.data << std::endl;
});

sse.start();

With Custom Event Types

httplib::sse::SSEClient sse(cli, "/events");

sse.on_event("notification", [](const httplib::sse::SSEMessage &msg) {
    std::cout << "Notification: " << msg.data << std::endl;
});

sse.on_event("update", [](const httplib::sse::SSEMessage &msg) {
    std::cout << "Update: " << msg.data << std::endl;
});

sse.start();

Async with Stop

httplib::sse::SSEClient sse(cli, "/events");

sse.on_message([](const httplib::sse::SSEMessage &msg) {
    std::cout << msg.data << std::endl;
});

sse.start_async();  // Returns immediately

// ... do other work ...

sse.stop();  // Stop when done

With Custom Headers (e.g., Authentication)

httplib::Headers headers = {
    {"Authorization", "Bearer token123"}
};

httplib::sse::SSEClient sse(cli, "/events", headers);
sse.start();

Refreshing Auth Token on Reconnect

httplib::sse::SSEClient sse(cli, "/events",
    {{"Authorization", "Bearer " + get_token()}});

// Preemptively refresh token on each successful connection
sse.on_open([&sse]() {
    sse.set_headers({{"Authorization", "Bearer " + get_token()}});
});

// Or reactively refresh on auth failure (401 triggers reconnect)
sse.on_error([&sse](httplib::Error) {
    sse.set_headers({{"Authorization", "Bearer " + refresh_token()}});
});

sse.start();

Error Handling

sse.on_error([](httplib::Error err) {
    std::cerr << "Error: " << httplib::to_string(err) << std::endl;
});

sse.set_reconnect_interval(1000);
sse.set_max_reconnect_attempts(5);

sse.start();

SSE Protocol

The client parses SSE format according to the W3C specification:

event: custom-type
id: 123
data: {"message": "hello"}

data: simple message

: this is a comment (ignored)