Skip to content

Commit

Permalink
http_async_client: fix build with older versionss of libcurl
Browse files Browse the repository at this point in the history
* CURLPIPE_NOTHING was introduced at libcurl 7.43.0
  • Loading branch information
linuxmaniac committed Mar 23, 2021
1 parent eb3fd40 commit d82d95a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/modules/http_async_client/http_multi.h
Expand Up @@ -48,6 +48,10 @@
#include "hm_hash.h"


#ifndef CURLPIPE_NOTHING
#define CURLPIPE_NOTHING 0L
#endif

extern stat_var *requests;
extern stat_var *replies;
extern stat_var *errors;
Expand Down

0 comments on commit d82d95a

Please sign in to comment.