diff options
Diffstat (limited to 'lib/cfilters.h')
-rw-r--r-- | lib/cfilters.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/cfilters.h b/lib/cfilters.h index 4f10847f5..e101cd37e 100644 --- a/lib/cfilters.h +++ b/lib/cfilters.h @@ -153,7 +153,8 @@ typedef CURLcode Curl_cft_query(struct Curl_cfilter *cf, /* A connection filter type, e.g. specific implementation. */ struct Curl_cftype { const char *name; /* name of the filter type */ - long flags; /* flags of filter type */ + int flags; /* flags of filter type */ + int log_level; /* log level for such filters */ Curl_cft_destroy_this *destroy; /* destroy resources of this cf */ Curl_cft_connect *connect; /* establish connection */ Curl_cft_close *close; /* close conn */ |