Craig McQueen
Craig McQueen
I'm unsure how to use this, because I can't see any examples or documentation. The readme file mentions "See examples for inspiration", but I can't find any examples.
See [Counters — Listing named counters from nft command line](https://wiki.nftables.org/wiki-nftables/index.php/Counters#Listing_named_counters_from_nft_command_line) in the nftables wiki. That has an example of reading a single counter: % nft list counter inet named_counter_demo cnt_http...
I'm working through the [LPC55Sxx Secure Boot](https://spsdk.readthedocs.io/en/2.0.1/examples/lpc55sxx_secure_boot.html) page in the SPSDK documentation. It describes how to prepare and write the data for the CMPA (Customer Manufacturing Programming Area) and CFPA...
It seems that on 32-bit *nix OS, the `CFG_INT` config type is signed 32-bit. I've got a config type that needs to be 64-bit. I've got another config type that...
I've found some addresses on the map which are shown as FTTP, but the NBN web site describes them as > Technology used in your connection > nbn® Fibre to...
Weirdly, it looks as though NSW has two separate Glenroys. * Glenroy 2640, a suburb of Albury. * Glenroy 2653, near Tumbarumba. So, looking up [Glenroy addresses](https://lukeprior.github.io/nbn-upgrade-map/?suburb=glenroy&state=NSW) shows a map...
Please consider implementing [COBS/R](https://pythonhosted.org/cobs/cobsr-intro.html) which is a small variant of COBS that can often eliminate the +1-byte encoding overhead of COBS. I have implemented it in [C](/cmcqueen/cobs-c) and in [Python](/cmcqueen/cobs-python).
Wireshark 4.4 now bundles Lua 5.4.6. It would be helpful to support Lua 5.4 for anyone who wants to use gcrypt in a Wireshark dissector.
In `dll/serialunix/libnserial/openserial.c`, I notice the code can optionally do a `TIOCEXCL` lock. ```c #if defined HAVE_TERMIOS_EXCLUSIVE if (ioctl(handle->fd, TIOCEXCL)) { nslog(handle, NSLOG_NOTICE, "open: error setting TIOCEXCL: errno=%d", errno); } #endif...
I don't see any mention of CUSE here. * Is it supported at all? * If it's supported, it would be good to have documentation. * If it's supported, it...