lib/curl/Easy: add curl_easy_escape() wrapper
This commit is contained in:
parent
38edb58054
commit
147872fe97
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2016 Max Kellermann <max.kellermann@gmail.com>
|
* Copyright (C) 2016-2018 Max Kellermann <max.kellermann@gmail.com>
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
* modification, are permitted provided that the following conditions
|
* modification, are permitted provided that the following conditions
|
||||||
@ -86,6 +86,10 @@ public:
|
|||||||
if (code != CURLE_OK)
|
if (code != CURLE_OK)
|
||||||
throw std::runtime_error(curl_easy_strerror(code));
|
throw std::runtime_error(curl_easy_strerror(code));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *Escape(const char *string, int length=0) const noexcept {
|
||||||
|
return curl_easy_escape(handle, string, length);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user