Changeset 5170 for pjproject/trunk/pjsip-apps/src/samples/httpdemo.c
- Timestamp:
- Aug 25, 2015 8:45:46 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/samples/httpdemo.c
r3553 r5170 44 44 #define THIS_FILE "http_demo" 45 45 46 static void on_response(pj_http_req * http_req, const pj_http_resp *resp)46 static void on_response(pj_http_req *req, const pj_http_resp *resp) 47 47 { 48 48 unsigned i; 49 49 50 PJ_UNUSED_ARG( http_req);50 PJ_UNUSED_ARG(req); 51 51 PJ_LOG(3,(THIS_FILE, "%.*s %d %.*s", (int)resp->version.slen, resp->version.ptr, 52 52 resp->status_code, … … 66 66 } 67 67 68 static void on_send_data(pj_http_req * http_req, void **data, pj_size_t *size)68 static void on_send_data(pj_http_req *req, void **data, pj_size_t *size) 69 69 { 70 PJ_UNUSED_ARG( http_req);70 PJ_UNUSED_ARG(req); 71 71 PJ_UNUSED_ARG(size); 72 72 PJ_UNUSED_ARG(data);
Note: See TracChangeset
for help on using the changeset viewer.