Sample code for 30+ languages & platforms
C++

Example: Http.ClearHeaders method

Demonstrates how to call the ClearHeaders method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat C++ Downloads

C++
#include <CkHttp.h>

void ChilkatSample(void)
    {
    bool success = false;

    CkHttp http;

    //  Add a request header.
    http.SetRequestHeader("X-Something","1234");
    http.SetRequestHeader("X-Example","5678");

    const char *responseBody = http.quickGetStr("https://chilkatsoft.com/helloWorld.txt");
    //  Examine the request header we just sent..
    std::cout << http.lastHeader() << "\r\n";
    std::cout << "----" << "\r\n";

    //  Output:

    //  GET /helloWorld.txt HTTP/1.1
    //  Host: chilkatsoft.com
    //  Accept: */*
    //  Accept-Encoding: gzip
    //  X-Something: 1234
    //  X-Example: 5678

    //  Remove the request headers we previously added:
    http.ClearHeaders();

    responseBody = http.quickGetStr("https://chilkatsoft.com/helloWorld.txt");
    std::cout << http.lastHeader() << "\r\n";

    //  Output:

    //  GET /helloWorld.txt HTTP/1.1
    //  Host: chilkatsoft.com
    //  Accept: */*
    //  Accept-Encoding: gzip
    }