summaryrefslogtreecommitdiff
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/net/https/HTTPHeader.cpp
blob: 4fe525357d1b7efd65107072c2e1857ed7877c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "HTTPHeader.h"
#include <stdlib.h>    
using std::map;
using std::string;

HTTPHeader::HTTPHeader():
_status(HTTP_ERROR),
_fields()
{
}

std::string HTTPHeader::getField(const std::string& name)
{
    map<string,string>::iterator itor = _fields.find(name);
    if(itor == _fields.end())
        return string();
    return itor->second;
}

int HTTPHeader::getBodyLength()
{
    return atoi(getField("Content-Length").c_str());
}