mbed-os

Fork of mbed-os by erkin yucel

features/unsupported/net/https/HTTPHeader.cpp

Committer:
xuaner
Date:
2017-07-20
Revision:
1:3deb71413561
Parent:
0:f269e3021894

File content as of revision 1:3deb71413561:

#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());
}