Lines Matching refs:bind
66 …/// A bind operation failed because the provided address is not an address that the `network` can …
68 …/// A bind operation failed because the provided address is already in use or because there are no…
241 /// - `bind-in-progress`
263 /// network interface(s) to bind to.
268 /// only as long as the previous bind failed. Once a bind succeeds, the
278 …t-bindable`: `local-address` is not an address that the `network` can bind to. (EADDRNOTAVAIL)
279 /// - `not-in-progress`: A `bind` operation is not in progress.
283 /// When binding to a non-zero port, this bind operation shouldn't be affected by the TIME_WAIT
288 /// Unlike in POSIX, in WASI the bind operation is async. This enables
291 /// `bind` as part of either `start-bind` or `finish-bind`.
294 /// - <https://pubs.opengroup.org/onlinepubs/9699919799/functions/bind.html>
295 /// - <https://man7.org/linux/man-pages/man2/bind.2.html>
296 /// - <https://learn.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-bind>
297 /// - <https://man.freebsd.org/cgi/man.cgi?query=bind&sektion=2&format=html>
299 …start-bind: func(network: borrow<network>, local-address: ip-socket-address) -> result<_, error-co…
301 finish-bind: func() -> result<_, error-code>;
318 …different network. The `network` passed to `connect` must be identical to the one passed to `bind`.
326 …/// - `address-in-use`: Tried to perform an implicit bind, but there were no ephemeral …
358 …/// - `address-in-use`: Tried to perform an implicit bind, but there were no ephemeral …
542 /// When `finish-bind`, `finish-listen`, `finish-connect` or `accept`
599 …/// at time of creation, the socket is not bound to any `network` yet. Up to the moment `bind`/`co…
660 /// network interface(s) to bind to.
668 …t-bindable`: `local-address` is not an address that the `network` can bind to. (EADDRNOTAVAIL)
669 /// - `not-in-progress`: A `bind` operation is not in progress.
673 /// Unlike in POSIX, in WASI the bind operation is async. This enables
676 /// `bind` as part of either `start-bind` or `finish-bind`.
679 /// - <https://pubs.opengroup.org/onlinepubs/9699919799/functions/bind.html>
680 /// - <https://man7.org/linux/man-pages/man2/bind.2.html>
681 /// - <https://learn.microsoft.com/en-us/windows/win32/api/winsock/nf-winsock-bind>
682 /// - <https://man.freebsd.org/cgi/man.cgi?query=bind&sektion=2&format=html>
684 …start-bind: func(network: borrow<network>, local-address: ip-socket-address) -> result<_, error-co…
686 finish-bind: func() -> result<_, error-code>;
718 …/// - `address-in-use`: Tried to perform an implicit bind, but there were no ephemeral …
907 …/// at time of creation, the socket is not bound to any `network` yet. Up to the moment `bind` is …