dhgdh

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by joey shelton

mbd_os/libraries/net/https/HTTPHeader.cpp

Committer:
nexpaq
Date:
2016-09-17
Revision:
1:55a6170b404f

File content as of revision 1:55a6170b404f:

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