search for: 255a97a5

Displaying 3 results from an estimated 3 matches for "255a97a5".

2020 Jul 15
0
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
...tion will be 2. */ + sleep (2); + iteration = 2; + + if (nbd_pread (nbd, buf, sizeof buf, 0, 0) == -1) { + fprintf (stderr, "%s\n", nbd_get_error ()); + exit (EXIT_FAILURE); + } + + nbd_close (nbd); + exit (EXIT_SUCCESS); +} diff --git a/.gitignore b/.gitignore index a39aa675..255a97a5 100644 --- a/.gitignore +++ b/.gitignore @@ -113,6 +113,8 @@ plugins/*/*.3 /tests/stamp-ssh-user-key /tests/test-connect /tests/test-curl +/tests/test-curl-cookie-script +/tests/test-curl-header-script /tests/test-data /tests/test-delay /tests/test-exit-with-parent -- 2.27.0
2020 Jul 15
2
[PATCH nbdkit v2] curl: Implement header and cookie scripts.
Evolution of this patch series: https://www.redhat.com/archives/libguestfs/2020-July/thread.html#00073 Instead of auth-script, this implements header-script and cookie-script. It can be used for similar purposes but the implementation is somewhat saner. Rich.
2020 Aug 14
2
[PATCH nbdkit] New ondemand plugin.
...system is persistent. +guestfish --format=raw -a "nbd://?socket=$sock" -m /dev/sda <<EOF + write /test.txt "hello" +EOF +guestfish --ro --format=raw -a "nbd://?socket=$sock" -m /dev/sda <<EOF + cat /test.txt +EOF diff --git a/.gitignore b/.gitignore index 255a97a5..2c463909 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,7 @@ plugins/*/*.3 /plugins/golang/examples/*/nbdkit-*-plugin.h /plugins/golang/examples/*/nbdkit-*-plugin.so /plugins/ocaml/nbdkit-ocamlexample-plugin.so +/plugins/ondemand/default-command.c /plugins/rust/Cargo.lock /plugins/rust...