Lines Matching defs:sendto

67 /// `sendto(fd, buf, flags, addr)`—Writes data to a socket to a specific IP
76 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html
77 /// [Linux]: https://man7.org/linux/man-pages/man2/sendto.2.html
78 /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/sendto.2.html
79 /// [Winsock2]: https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-sendto
80 pub fn sendto<Fd: AsFd>(
101 /// `sendto(fd, buf, flags, addr)`—Writes data to a socket to a specific
110 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html
111 /// [Linux]: https://man7.org/linux/man-pages/man2/sendto.2.html
112 /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/sendto.2.html
113 /// [Winsock2]: https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-sendto
137 /// `sendto(fd, buf, flags, addr, sizeof(struct sockaddr_in))`—Writes data to
146 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html
147 /// [Linux]: https://man7.org/linux/man-pages/man2/sendto.2.html
148 /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/sendto.2.html
149 /// [Winsock2]: https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-sendto
151 #[doc(alias = "sendto")]
161 /// `sendto(fd, buf, flags, addr, sizeof(struct sockaddr_in6))`—Writes data
170 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html
171 /// [Linux]: https://man7.org/linux/man-pages/man2/sendto.2.html
172 /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/sendto.2.html
173 /// [Winsock2]: https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-sendto
175 #[doc(alias = "sendto")]
185 /// `sendto(fd, buf, flags, addr, sizeof(struct sockaddr_un))`—Writes data to
194 /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/sendto.html
195 /// [Linux]: https://man7.org/linux/man-pages/man2/sendto.2.html
196 /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/sendto.2.html
197 /// [Winsock2]: https://docs.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-sendto
200 #[doc(alias = "sendto")]