logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git
commit: 8987a76cf154778d5b2f982211478169bae0fe27
parent 76a439bd5f6087866c456f277794be5903f3fc03
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 14 Mar 2023 13:33:11 +0100

notes/unix-defects: Use SRV as missing query example instead of TXT

Diffstat:

Mnotes/index.xhtml2+-
Mnotes/unix-defects.xhtml2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/notes/index.xhtml b/notes/index.xhtml @@ -46,7 +46,7 @@ <tr><td><a href="systems.json">systems.json</a></td><td data-value="642" data-type="int">642 B</td><td>2023-01-09 21:04:12 +0100</td></tr> <tr><td><a href="tips.md">tips.md</a></td><td data-value="174" data-type="int">174 B</td><td>2018-01-02 01:42:26 +0100</td></tr> <tr><td><a href="tuple_truth_table.txt">tuple_truth_table.txt</a></td><td data-value="792" data-type="int">792 B</td><td>2019-10-04 02:06:42 +0200</td></tr> - <tr><td><a href="unix-defects">unix-defects</a></td><td data-value="5965" data-type="int">5 965 B</td><td>2023-03-13 22:45:26 +0100</td></tr> + <tr><td><a href="unix-defects">unix-defects</a></td><td data-value="5965" data-type="int">5 965 B</td><td>2023-03-14 13:33:11 +0100</td></tr> <tr><td><a href="zfs">zfs</a></td><td data-value="1262" data-type="int">1 262 B</td><td>2020-05-22 11:33:33 +0200</td></tr> </tbody> </table> diff --git a/notes/unix-defects.xhtml b/notes/unix-defects.xhtml @@ -31,7 +31,7 @@ Please consider: Clean ABI; Virtual filesystems (could look like <a href="https://www.openwall.com/tcb/">tcb shadow</a> for <code>passwd</code>); or proper servers instead. </p> <p> - It's associated functions (<a href="#getaddrinfo"><code>getaddrinfo(3)</code></a>, <a href="#gethostbyname"><code>gethostbyname(3)</code></a>, …) also do not allow to do any query that aren't precooked for you, for example you cannot query DNS records like <code>TXT</code>, arguably it's DNS-specific but still ought to be present in a standard library. + It's associated functions (<a href="#getaddrinfo"><code>getaddrinfo(3)</code></a>, <a href="#gethostbyname"><code>gethostbyname(3)</code></a>, …) also do not allow to do any query that aren't precooked for you, for example you cannot query DNS records like <code>SRV</code>, arguably it's DNS-specific but still ought to be present in a standard library. </p> <h3 id="getaddrinfo"><code>getaddrinfo(3)</code></h3>