diff options
author | 2022-09-28 18:30:40 +0100 | |
---|---|---|
committer | 2022-09-28 18:30:40 +0100 | |
commit | a156188b3eb5cb3da44aa1b7452265f5fa38a607 (patch) | |
tree | 7097fa48d56fbabc7c2c8750b1f3bc9321d71c0f /vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go | |
parent | [bugfix] Fix emphasis being added to emoji shortcodes with markdown parsing (... (diff) | |
download | gotosocial-a156188b3eb5cb3da44aa1b7452265f5fa38a607.tar.xz |
[chore] update dependencies, bump to Go 1.19.1 (#826)
* update dependencies, bump Go version to 1.19
* bump test image Go version
* update golangci-lint
* update gotosocial-drone-build
* sign
* linting, go fmt
* update swagger docs
* update swagger docs
* whitespace
* update contributing.md
* fuckin whoopsie doopsie
* linterino, linteroni
* fix followrequest test not starting processor
* fix other api/client tests not starting processor
* fix remaining tests where processor not started
* bump go-runners version
* don't check last-webfingered-at, processor may have updated this
* update swagger command
* update bun to latest version
* fix embed to work the same as before with new bun
Signed-off-by: kim <grufwub@gmail.com>
Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
Diffstat (limited to 'vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go')
-rw-r--r-- | vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go b/vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go index af8adaab1..8243f3583 100644 --- a/vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go +++ b/vendor/modernc.org/libc/netdb/netdb_darwin_amd64.go @@ -5751,20 +5751,20 @@ type X__msfilterreq = struct { // IP_PKTINFO: Packet information (equivalent to RFC2292 sec 5 for IPv4) // This structure is used for // -// 1) Receiving ancilliary data about the datagram if IP_PKTINFO sockopt is -// set on the socket. In this case ipi_ifindex will contain the interface -// index the datagram was received on, ipi_addr is the IP address the -// datagram was received to. -// -// 2) Sending a datagram using a specific interface or IP source address. -// if ipi_ifindex is set to non-zero when in_pktinfo is passed as -// ancilliary data of type IP_PKTINFO, this will be used as the source -// interface to send the datagram from. If ipi_ifindex is null, ip_spec_dst -// will be used for the source address. -// -// Note: if IP_BOUND_IF is set on the socket, ipi_ifindex in the ancillary -// IP_PKTINFO option silently overrides the bound interface when it is -// specified during send time. +// 1. Receiving ancilliary data about the datagram if IP_PKTINFO sockopt is +// set on the socket. In this case ipi_ifindex will contain the interface +// index the datagram was received on, ipi_addr is the IP address the +// datagram was received to. +// +// 2. Sending a datagram using a specific interface or IP source address. +// if ipi_ifindex is set to non-zero when in_pktinfo is passed as +// ancilliary data of type IP_PKTINFO, this will be used as the source +// interface to send the datagram from. If ipi_ifindex is null, ip_spec_dst +// will be used for the source address. +// +// Note: if IP_BOUND_IF is set on the socket, ipi_ifindex in the ancillary +// IP_PKTINFO option silently overrides the bound interface when it is +// specified during send time. type In_pktinfo = struct { Fipi_ifindex uint32 Fipi_spec_dst struct{ Fs_addr In_addr_t } |