logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

zhttp_client - Class for provides a simple http client

Authors

       The czmq manual was written by the authors in the AUTHORS file.

Description

       zhttp_client - provides a simple http client

       Please add @discuss section in ./../src/zhttp_client.c.

Example

Fromzhttp_client_testmethod.

           zhttp_client_t *self = zhttp_client_new (verbose);
           assert (self);

           zhttp_request_t* request = zhttp_request_new ();
           zhttp_request_set_url (request, url);
           zhttp_request_set_method (request, "GET");
           int rc = zhttp_request_send (request, self, /*timeout*/ 10000, /* user args*/ NULL, NULL);
           assert (rc == 0);

           void *user_arg;
           void *user_arg2;
           zhttp_response_t* response = zhttp_response_new ();
           rc = zhttp_response_recv (response, self, &user_arg, &user_arg2);
           assert (rc == 0);
           assert (streq (zhttp_response_content (response), "Hello World!"));

           zhttp_client_destroy (&self);
           zhttp_request_destroy (&request);
           zhttp_response_destroy (&response);

Name

       zhttp_client - Class for provides a simple http client

Notes

        1. zeromq-dev@lists.zeromq.orgmailto:zeromq-dev@lists.zeromq.org

CZMQ 4.2.1                                         05/24/2024                                    ZHTTP_CLIENT(3)

Resources

       Main web site:

       Report bugs to the email <zeromq-dev@lists.zeromq.org[1]>

Synopsis

       //  This is a draft class, and may change without notice. It is disabled in
       //  stable builds by default. If you use this in applications, please ask
       //  for it to be pushed to stable state. Use --enable-drafts to enable.
       #ifdef CZMQ_BUILD_DRAFT_API
       //  *** Draft method, for development use, may change without warning ***
       //  Create a new http client
       CZMQ_EXPORT zhttp_client_t *
           zhttp_client_new (bool verbose);

       //  *** Draft method, for development use, may change without warning ***
       //  Destroy an http client
       CZMQ_EXPORT void
           zhttp_client_destroy (zhttp_client_t **self_p);

       //  *** Draft method, for development use, may change without warning ***
       //  Self test of this class.
       CZMQ_EXPORT void
           zhttp_client_test (bool verbose);

       #endif // CZMQ_BUILD_DRAFT_API
       Please add '@interface' section in './../src/zhttp_client.c'.

See Also