CURLMOPT_PUSHFUNCTION.3: fix argument types

Closes #389
Closes #386
This commit is contained in:
Sam Roth 2015-08-18 14:42:18 -05:00 committed by Daniel Stenberg
parent 618dfd65e4
commit e67e71d62b
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ CURLMOPT_PUSHFUNCTION \- callback that approves or denies server pushes
.nf
#include <curl/curl.h>
char *curl_pushheader_bynum(push_headers, int num);
char *curl_pushheader_byname(push_headers, const char *name);
char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num);
char *curl_pushheader_byname(struct curl_pushheaders *h, const char *name);
int curl_push_callback(CURL *parent,
CURL *easy,