libcli icon indicating copy to clipboard operation
libcli copied to clipboard

Libcli provides a shared library for including a Cisco-like command-line interface into other software. It's a telnet interface which supports command-line editing, history, authentication and callba...

Results 30 libcli issues
Sort by recently updated
recently updated
newest added

- Regular callback is called only if there's no input from the client during the regular interval. Fix by calling the callback when the interval expires, regardless of input from...

fixed minor typos and bumped old revision number

_print() saves in cli->buffer whatever follows the last newline, but then just throws it away on the next call. Use cli->buffer by copying it in front of the new input.

Noticed by @bobby285271 in https://github.com/NixOS/nixpkgs/pull/147749 when we attempted to update `libcli` in NixOS. Build fails on Darwin libc as: ``` libcli.c:2521:41: error: implicit declaration of function 'strchrnul' is invalid in...

n = vasprintf(&p, format, ap); p is leak in _printf in libcli.c.

Hi Is there any way I can use libcli without using telnet? I'm wondering it is possible that run a program like clitest and it displays login screen directly without...

Hi I used your library somewhere and I found a Doxygen documentation can help a lot! So I've added Doxygen to all libcli.h functions! I've also added Doxygen configuration file...

Hi. I have a question while testing the library. I would like to know how to access global variables within the command function registered through the **cli_register_command()**. If the value...

So i try to change my makefile as: clitest: clitest.o $(LIB_STATIC) $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $^ $(LIBS) And it need to export 'LD_LIBRARY_PATH=.' if i use the original makefile.

Please can someone clarify to me the state of Visual Studio support? It seems that this library doesn't build out of the box with VS2019. There are many issues, the...