2022-04-18 00:01:26 -07:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
2023-12-07 22:11:56 -05:00
|
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
2022-04-18 00:01:26 -07:00
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
|
|
│ │
|
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-05-12 06:43:59 -07:00
|
|
|
#include "libc/dce.h"
|
2024-07-19 19:36:25 -07:00
|
|
|
#include "libc/intrin/describeflags.h"
|
2022-04-18 08:54:42 -07:00
|
|
|
#include "libc/intrin/kprintf.h"
|
2024-08-04 12:52:25 -07:00
|
|
|
#include "libc/macros.h"
|
2022-06-25 18:17:31 -07:00
|
|
|
#include "libc/nt/winsock.h"
|
2022-04-18 00:01:26 -07:00
|
|
|
|
2024-08-24 18:10:22 -07:00
|
|
|
void _DescribeIovNt(const struct NtIovec *iov, uint32_t iovlen, ssize_t rem) {
|
2022-04-18 08:54:42 -07:00
|
|
|
int i;
|
2024-06-22 05:45:49 -07:00
|
|
|
if (kisdangerous(iov)) {
|
2022-05-12 06:43:59 -07:00
|
|
|
kprintf("%p", iov);
|
|
|
|
return;
|
|
|
|
}
|
2022-04-18 08:54:42 -07:00
|
|
|
kprintf("{");
|
|
|
|
for (i = 0; rem && i < MIN(5, iovlen); ++i) {
|
2022-06-25 18:17:31 -07:00
|
|
|
kprintf("%s{%#.*hhs%s, %'zu}", i ? ", " : "",
|
|
|
|
MAX(0, MIN(40, MIN(rem, iov[i].len))), iov[i].buf,
|
|
|
|
MAX(0, MIN(40, MIN(rem, iov[i].len))) < iov[i].len ? "..." : "",
|
|
|
|
iov[i].len);
|
|
|
|
rem -= iov[i].len;
|
2022-04-18 08:54:42 -07:00
|
|
|
}
|
|
|
|
kprintf("%s}", iovlen > 5 ? "..." : "");
|
|
|
|
}
|