Update httpc.h

This commit is contained in:
Kartik 2017-04-05 19:13:01 +05:30 committed by GitHub
parent 7f1a0c60f3
commit 4297142721

View File

@ -89,7 +89,7 @@ Result httpcAddPostDataAscii(httpcContext *context, const char* name, const char
* @param value The binary data to pass as a value. * @param value The binary data to pass as a value.
* @param len Length of the binary data which has been passed. * @param len Length of the binary data which has been passed.
*/ */
Result httpcAddPostDataBinary(httpcContext *context, const char* name, u8* value, u32 len); Result httpcAddPostDataBinary(httpcContext *context, const char* name, const u8* value, u32 len);
/** /**
* @brief Adds a POST body to a HTTP context. * @brief Adds a POST body to a HTTP context.