A stack which works with or without an Mbed os library. Provides IPv4 or IPv6 with a full 1500 byte buffer.

Dependents:   oldheating gps motorhome heating

tcp/http/http.c

Committer:
andrewboyson
Date:
2018-10-20
Revision:
71:736a5747ade1
Parent:
61:aad055f1b0d1
Child:
73:43e3d7fb3d60

File content as of revision 71:736a5747ade1:

#include <stdbool.h>

#include   "http.h"
#include "tcpbuf.h"
#include "action.h"
#include    "net.h"
#include    "log.h"

bool HttpTrace = false;

void (*HttpReplyFunction  )(int todo);                                       //Plumb into this from your html server
int  (*HttpRequestFunction)(char *pPath, char *pLastModified, char *pQuery); //Plumb into this from your html server

void HttpHandleRequest(int* pSize, char* pRequestStream, int positionInRequestStream, int* pToDo)
{
    if (HttpTrace)
    {
        LogF("HTTP  <<< %d (%d)\r\n", *pSize, positionInRequestStream);
    }
    //Handle request for the first packet of data received but leave todo the same after that.
    if (*pSize)
    {
        char* pMethod;
        char* pPath;
        char* pQuery;
        char* pLastModified;
        HttpReadRequest(pRequestStream, *pSize, &pMethod, &pPath, &pQuery, &pLastModified);
        *pToDo = HttpRequestFunction(pPath, pLastModified, pQuery);
    }
    
}
void HttpSendReply(int* pSize, char* pReplyStream, int positionInReplyStream, uint16_t mss, int todo)
{
    TcpBufStart(positionInReplyStream, mss, pReplyStream);
    HttpReplyFunction(todo);
    *pSize = TcpBufLength();

    if (HttpTrace)
    {
        LogF("HTTP  >>> %d (%d)\r\n", *pSize, positionInReplyStream);
    }
}