Skip to content

Commit

Permalink
Multiple Translation Units
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Oct 23, 2023
1 parent 99b034c commit cef333e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/AudioHttp/HttpHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ struct HttpHeaderLine {
bool active;
};

static Vector<char> temp_buffer;


/**
* @brief In a http request and reply we need to process header information. With this API
* we can define and query the header information. The individual header lines are stored
Expand Down Expand Up @@ -299,7 +302,6 @@ class HttpHeader {
}

protected:
static Vector<char> temp_buffer;
int status_code = UNDEFINED;
bool is_written = false;
bool is_chunked = false;
Expand Down Expand Up @@ -371,10 +373,6 @@ class HttpHeader {

};

// declare static member variable
Vector<char> HttpHeader::temp_buffer;


/**
* @brief Reading and writing of Http Requests
* @author Phil Schatzmann
Expand Down

0 comments on commit cef333e

Please sign in to comment.