Displaying 4 results from an estimated 4 matches for "abcdefghijklmno".
Did you mean:
abcdefghijklmnop
2013 May 10
1
qualify=yes: OPTIONS: How to Change?: `From: "asterisk"`
...Thanks,
Brian LaVallee
--
/etc/asterisk/sip.conf (Asterisk 1.8.15-cert1)
[general]
; - Truncated
[TRUNK]
; - Truncated
qualify=yes
;
; end
--
IP 4.4.4.4.sip > 3.3.3.3.sip: UDP, length 573
............................OPTIONS sip:server.carrier.tld SIP/2.0
Via: SIP/2.0/UDP 4.4.4.4:5060;branch=aBcDeFgHiJkLmNo;rport
Max-Forwards: 70
From: "asterisk" <sip:accountid at 4.4.4.4>;tag=as1832334c
To: <sip:server.carrier.tld>
Contact: <sip:accountid at 4.4.4.4:5060>
Call-ID: f80a4ad87fee7c9fdc19b7769495fdb5 at 4.4.4.4:5060
CSeq: 102 OPTIONS
Date: Thu, 09 May 2013 07:22:30 GMT
Allow:...
2018 Oct 30
2
Re: [PATCH nbdkit 4/4] Add floppy plugin.
...hort_base[j];
> + for (j = 0; j < 3; ++j)
> + checksum = ((checksum & 1) << 7) + (checksum >> 1) + lfn->short_ext[j];
> +
> + /* LFN support.
> + *
> + * Iterate in reverse over the sequence numbers. If the filename is:
> + *
> + * "ABCDEFGHIJKLMNO"
> + *
> + * assuming those are UCS-2 codepoints, so lfn_size = 15*2 = 30,
> + * then we generate these LFN sequences:
> + *
> + * seq byte_offset s[13]
> + * 0x42 26 "NO "
> + * 0x01 0 "ABCDEFGHIJKL...
2018 Oct 28
6
[PATCH nbdkit 0/4] Add floppy plugin.
Add nbdkit-floppy-plugin, “inspired” by qemu's VVFAT driver, but
without the ability to handle writes.
The implementation is pretty complete, supporting FAT32, LFNs, volume
labels, timestamps, etc, and it passes both ‘make check’ and ‘make
check-valgrind’.
Usage is simple; to serve the current directory:
$ nbdkit floppy .
Then using guestfish (or any NBD client):
$ guestfish --ro
2018 Oct 28
0
[PATCH nbdkit 4/4] Add floppy plugin.
...; 7) + (checksum >> 1) + lfn->short_base[j];
+ for (j = 0; j < 3; ++j)
+ checksum = ((checksum & 1) << 7) + (checksum >> 1) + lfn->short_ext[j];
+
+ /* LFN support.
+ *
+ * Iterate in reverse over the sequence numbers. If the filename is:
+ *
+ * "ABCDEFGHIJKLMNO"
+ *
+ * assuming those are UCS-2 codepoints, so lfn_size = 15*2 = 30,
+ * then we generate these LFN sequences:
+ *
+ * seq byte_offset s[13]
+ * 0x42 26 "NO "
+ * 0x01 0 "ABCDEFGHIJKLM"
+ */
+ for (seq = 1 + lf...