1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
|
<?xml version="1.0"?>
<def format="2">
<!-- libcurl C API. See https://curl.haxx.se/libcurl/c/ -->
<!-- The libcurl C API is typically include by '#include <curl/curl.h>' -->
<!-- ########## libcurl Types ########## -->
<podtype name="CURLcode"/>
<!-- ########## libcurl defines / macros ########## -->
<define name="CURLE_OK" value="(0)"/>
<!-- ########## libcurl Allocation / Deallocation ########## -->
<resource>
<alloc init="true">curl_easy_init</alloc>
<alloc init="true">curl_easy_duphandle</alloc>
<dealloc>curl_easy_cleanup</dealloc>
</resource>
<memory>
<alloc init="true">curl_easy_escape</alloc>
<alloc init="true">curl_easy_unescape</alloc>
<alloc init="true">curl_escape</alloc>
<alloc init="true">curl_unescape</alloc>
<dealloc>curl_free</dealloc>
</memory>
<memory>
<alloc init="true">curl_getenv</alloc>
<alloc init="true">curl_maprintf</alloc>
<alloc init="true">curl_mvaprintf</alloc>
<dealloc>free</dealloc>
</memory>
<!-- ########## libcurl C API Functions ########## -->
<!-- void curl_easy_cleanup(CURL * handle ); -->
<function name="curl_easy_cleanup">
<noreturn>false</noreturn>
<returnValue type="void"/>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- CURL *curl_easy_duphandle(CURL *handle ); -->
<function name="curl_easy_duphandle">
<noreturn>false</noreturn>
<returnValue type="CURL *"/>
<use-retval/>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- char *curl_easy_escape( CURL * curl , const char * string , int length ); -->
<function name="curl_easy_escape">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<use-retval/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
<!-- CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ... ); -->
<function name="curl_easy_getinfo">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="out">
<not-bool/>
</arg>
</function>
<!-- CURL *curl_easy_init( ); -->
<function name="curl_easy_init">
<noreturn>false</noreturn>
<returnValue type="CURL *"/>
<use-retval/>
</function>
<!-- CURLcode curl_easy_pause(CURL *handle , int bitmask ); -->
<function name="curl_easy_pause">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- CURLcode curl_easy_perform(CURL * easy_handle ); -->
<function name="curl_easy_perform">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- CURLcode curl_easy_recv( CURL * curl , void * buffer , size_t buflen , size_t * n ); -->
<function name="curl_easy_recv">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="out">
<minsize type="argvalue" arg="3"/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="4" direction="out">
<not-null/>
<not-bool/>
</arg>
</function>
<!-- void curl_easy_reset(CURL *handle ); -->
<function name="curl_easy_reset">
<noreturn>false</noreturn>
<returnValue type="void"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
</function>
<!-- CURLcode curl_easy_send( CURL * curl , const void * buffer , size_t buflen , size_t * n ); -->
<function name="curl_easy_send">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<minsize type="argvalue" arg="3"/>
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="4" direction="out">
<not-null/>
<not-bool/>
</arg>
</function>
<!-- CURLcode curl_easy_setopt(CURL *handle, CURLoption option, parameter); -->
<function name="curl_easy_setopt">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
</arg>
</function>
<!-- const char *curl_easy_strerror(CURLcode errornum); -->
<function name="curl_easy_strerror">
<noreturn>false</noreturn>
<returnValue type="const char *"/>
<use-retval/>
<arg nr="1" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- char *curl_easy_unescape( CURL * curl , const char * url , int inlength , int * outlength ); -->
<function name="curl_easy_unescape">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<arg nr="1">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="4" direction="out">
<not-bool/>
</arg>
</function>
<!-- CURLcode curl_easy_upkeep(CURL * handle ); -->
<function name="curl_easy_upkeep">
<noreturn>false</noreturn>
<returnValue type="CURLcode"/>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
</arg>
</function>
<!-- char *curl_escape( const char * url , int length ); -->
<function name="curl_escape">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<use-retval/>
<warn severity="style" alternatives="curl_easy_escape" reason="Obsolete"/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
<!-- void curl_free( char * ptr ); -->
<function name="curl_free">
<noreturn>false</noreturn>
<returnValue type="void"/>
<arg nr="1"/>
</function>
<!-- char *curl_getenv(const char * name ); -->
<function name="curl_getenv">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<use-retval/>
<warn severity="style">This function will be removed from the public libcurl API in a near future. It will instead be made "available" by source code access only, and then as curlx_getenv().</warn>
<arg nr="1" direction="in">
<not-uninit/>
<not-bool/>
</arg>
</function>
<!-- char *curl_maprintf(const char * format , ...); -->
<function name="curl_maprintf">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<use-retval/>
<warn severity="style">These functions will be removed from the public libcurl API in the future. Do not use them in any new programs or projects.</warn>
<formatstr/>
<arg nr="1" direction="in">
<formatstr/>
<not-uninit/>
</arg>
</function>
<!-- int curl_mfprintf(FILE * fd , const char * format , ...); -->
<function name="curl_mfprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="fprintf" reason="Obsolete"/>
<arg nr="1" direction="inout">
<not-null/>
<not-uninit/>
</arg>
<formatstr/>
<arg nr="2" direction="in">
<formatstr/>
<not-uninit/>
</arg>
</function>
<!-- int curl_mprintf(const char * format , ...); -->
<function name="curl_mprintf">
<noreturn>false</noreturn>
<returnValue type="int"/>
<leak-ignore/>
<warn severity="style" alternatives="printf" reason="Obsolete"/>
<formatstr/>
<arg nr="1" direction="in">
<formatstr/>
<not-uninit/>
</arg>
</function>
<!-- int curl_msnprintf(char * buffer , size_t maxlength , const char * format , ...); -->
<function name="curl_msnprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="snprintf" reason="Obsolete"/>
<arg nr="1" direction="out">
<not-uninit/>
<minsize type="argvalue" arg="2"/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<formatstr/>
<arg nr="3" direction="in">
<formatstr/>
<not-null/>
<not-uninit/>
</arg>
</function>
<!-- int curl_msprintf(char * buffer , const char * format , ...); -->
<function name="curl_msprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="sprintf" reason="Obsolete"/>
<arg nr="1" direction="out">
<not-uninit/>
<minsize type="strlen" arg="2"/>
</arg>
<formatstr/>
<arg nr="2" direction="in">
<formatstr/>
<not-null/>
<not-uninit/>
</arg>
</function>
<!-- CURLMcode curl_multi_socket(CURLM * multi_handle, curl_socket_t sockfd, int *running_handles); -->
<function name="curl_multi_socket">
<noreturn>false</noreturn>
<returnValue type="CURLMcode"/>
<leak-ignore/>
<warn severity="style" alternatives="curl_multi_socket_action" reason="Obsolete">Usage of curl_multi_socket is deprecated, whereas the function is equivalent to curl_multi_socket_action with ev_bitmask set to 0.</warn>
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
</arg>
<arg nr="3" direction="out">
<not-null/>
<not-bool/>
</arg>
</function>
<!-- CURLMcode curl_multi_socket_all(CURLM *multi_handle, int *running_handles); -->
<function name="curl_multi_socket_all">
<noreturn>false</noreturn>
<returnValue type="CURLMcode"/>
<leak-ignore/>
<warn severity="style" alternatives="curl_multi_socket_action" reason="Obsolete"/>
<arg nr="1">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2" direction="out">
<not-null/>
<not-bool/>
</arg>
</function>
<!-- char *curl_mvaprintf(const char * format , va_list args ); -->
<function name="curl_mvaprintf">
<returnValue type="char *"/>
<noreturn>false</noreturn>
<use-retval/>
<warn severity="style">These functions will be removed from the public libcurl API in the future. Do not use them in any new programs or projects.</warn>
<arg nr="1" direction="in">
<not-uninit/>
<formatstr/>
</arg>
<arg nr="2"/>
</function>
<!-- int curl_mvfprintf(FILE * fd , const char * format , va_list args ); -->
<function name="curl_mvfprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="vfprintf" reason="Obsolete"/>
<arg nr="1" direction="inout">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<formatstr/>
</arg>
<arg nr="3"/>
</function>
<!-- int curl_mvprintf(const char * format , va_list args ); -->
<function name="curl_mvprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="vprintf" reason="Obsolete"/>
<arg nr="1" direction="in">
<not-uninit/>
<formatstr/>
</arg>
<arg nr="2"/>
</function>
<!-- int curl_mvsnprintf(char * buffer , size_t maxlength , const char * format , va_list args ); -->
<function name="curl_mvsnprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="vsnprintf" reason="Obsolete"/>
<arg nr="1" direction="out">
<not-uninit/>
<minsize type="argvalue" arg="2"/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<valid>0:</valid>
</arg>
<arg nr="3" direction="in">
<not-null/>
<not-uninit/>
<formatstr/>
</arg>
<arg nr="4"/>
</function>
<!-- int curl_mvsprintf(char * buffer , const char * format , va_list args ); -->
<function name="curl_mvsprintf">
<returnValue type="int"/>
<noreturn>false</noreturn>
<leak-ignore/>
<warn severity="style" alternatives="vsprintf" reason="Obsolete"/>
<arg nr="1" direction="out">
<not-null/>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
<formatstr/>
</arg>
<arg nr="3"/>
</function>
<!-- int curl_strequal(char * str1 , char * str2 ); -->
<function name="curl_strequal">
<noreturn>false</noreturn>
<returnValue type="int"/>
<use-retval/>
<pure/>
<leak-ignore/>
<warn severity="style">These functions will be removed from the public libcurl API in a near future. They will instead be made "available" by source code access only, and then as curlx_strequal() and curlx_strenqual().</warn>
<arg nr="1" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
<strz/>
</arg>
</function>
<!-- int curl_strnequal(char * str1 , char * str2 , size_t len ); -->
<function name="curl_strnequal">
<noreturn>false</noreturn>
<returnValue type="int"/>
<use-retval/>
<pure/>
<leak-ignore/>
<warn severity="style">These functions will be removed from the public libcurl API in a near future. They will instead be made "available" by source code access only, and then as curlx_strequal() and curlx_strenqual().</warn>
<arg nr="1" direction="in">
<not-null/>
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-null/>
<not-uninit/>
</arg>
<arg nr="3" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
<!-- char *curl_unescape( const char * url , int length ); -->
<function name="curl_unescape">
<noreturn>false</noreturn>
<returnValue type="char *"/>
<use-retval/>
<warn severity="style" alternatives="curl_easy_unescape" reason="Obsolete"/>
<arg nr="1" direction="in">
<not-uninit/>
</arg>
<arg nr="2" direction="in">
<not-uninit/>
<not-bool/>
<valid>0:</valid>
</arg>
</function>
</def>
|