-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTTP.h
11 lines (11 loc) · 863 Bytes
/
HTTP.h
1
2
3
4
5
6
7
8
9
10
11
//int GetHttpHeaderTag(const char *sHeader, const int iHeaderLen, const char *sTag, SYSTEMTIME *pOutST, int *iFurthestExtent);
int GetHttpHeaderTag(const char *sHeader, const int iHeaderLen, const char *sTag, char *&sBuf, int *iFurthestExtent);
int GetHttpHeaderTag(const char *sHeader, const int iHeaderLen,
const char *sTag, char *sBuf, int iMaxBuf, bool bPartialOk, int *iFurthestExtent);
int GetHttpHeaderTag(const char *sHeader, const int iHeaderLen,
const char *sTag, char *sBuf, int iMaxBuf, int *iFurthestExtent);
bool DoesHeaderContainTag(const char *sBuf, const int iBufLen, const char *sTag);
bool DoesHeaderContainTag(const char *sBuf, const int iBufLen,
const char *sTag, int *iHeaderEndPos);
bool IsValueEqual(const char *sValue1, const char *sValue2);
bool DoesValueContain(const char *sIn, const char *sValue);