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

remctl_new - Create a new remctl client

Author

       Russ Allbery <eagle@eyrie.org>

Compatibility

       This interface has been provided by the remctl client library since its initial release in version 2.0.

Description

remctl_new() creates a new remctl client.  The resulting remctl struct is opaque from the perspective of
       the caller, but should be the first argument to all subsequent calls into the remctl API.  Normally, the
       next call after remctl_new() would be remctl_open() to connect to a remote server.

       The resulting struct should be freed by calling remctl_close().

Name

       remctl_new - Create a new remctl client

Return Value

remctl_new() returns a pointer to an opaque remctl struct on success and NULL on failure.  If it returns
       NULL, errno will be set to an appropriate error code (normally ENOMEM).

See Also

remctl_open(3), remctl_command(3), remctl_commandv(3), remctl_output(3), remctl_close(3)

       The current version of the remctl library and complete details of the remctl protocol are available from
       its web page at <https://www.eyrie.org/~eagle/software/remctl/>.

3.18                                               2022-05-09                                      REMCTL_NEW(3)

Synopsis

       #include <remctl.h>

       struct remctl *remctl_new(void);

See Also