/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth3/ |
H A D | 0001-build-Fix-build-for-newer-versions-of-meson.patch | 6 sendto/meson.build:24:5: ERROR: Function does not take positional arguments. 11 sendto/meson.build | 1 - 14 diff --git a/sendto/meson.build b/sendto/meson.build 16 --- a/sendto/meson.build 17 +++ b/sendto/meson.build
|
/openbmc/slpd-lite/test/ |
H A D | test-suite.py | 26 ret = sock.sendto(payload, addr) 42 ret = sock.sendto(payload, addr) 58 ret = sock.sendto(payload, addr) 74 ret = sock.sendto(payload, addr) 90 ret = sock.sendto(payload, addr) 107 ret = sock.sendto(payload, addr) 127 ret = sock.sendto(payload, addr)
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/libndp/libndp/ |
H A D | 0001-libndp-Fix-signature-of-sendto-API.patch | 4 Subject: [PATCH] libndp: Fix signature of sendto API 9 | ../../git/libndp/libndp.c:212:50: error: passing argument 5 of 'sendto' from incompatible pointer… 10 | 212 | ret = sendto(sockfd, buf, buflen, flags, &sin6, sizeof(sin6)); 16 | 396 | ssize_t sendto (int, const void *, size_t, int, const struct sockaddr *, socklen_t); 33 - ret = sendto(sockfd, buf, buflen, flags, &sin6, sizeof(sin6)); 34 + ret = sendto(sockfd, buf, buflen, flags, (struct sockaddr*)&sin6, sizeof(sin6));
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rsyslog/rsyslog/ |
H A D | 0001-tests-tcpflood.c-Pass-correct-parameter-type-to-send.patch | 4 Subject: [PATCH] tests/tcpflood.c: Pass correct parameter type to sendto() 8 ../../rsyslog-8.2404.0/tests/tcpflood.c:811:70: error: passing argument 5 of 'sendto' from incompat… 9 …811 | lenSend = sendto(udpsockout, buf, lenBuf, 0, &udpRcvr, sizeof(udpRcv… 28 - lenSend = sendto(udpsockout, buf, lenBuf, 0, &udpRcvr, sizeof(udpRcvr)); 29 + lenSend = sendto(udpsockout, buf, lenBuf, 0, (const struct sockaddr *)&udpRcvr, sizeof(udpRcvr)…
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | ip_check_defrag.c | 114 err = sendto(client, frag_0, sizeof(frag_0), 0, saddr_p, saddr_len); in send_frags() 118 err = sendto(client, frag_1, sizeof(frag_1), 0, saddr_p, saddr_len); in send_frags() 122 err = sendto(client, frag_2, sizeof(frag_2), 0, saddr_p, saddr_len); in send_frags() 142 err = sendto(client, frag6_0, sizeof(frag6_0), 0, saddr_p, saddr_len); in send_frags6() 146 err = sendto(client, frag6_1, sizeof(frag6_1), 0, saddr_p, saddr_len); in send_frags6() 150 err = sendto(client, frag6_2, sizeof(frag6_2), 0, saddr_p, saddr_len); in send_frags6() 257 len = sendto(srv_fd, buf, len, 0, (struct sockaddr *)&caddr, caddr_len); in test_bpf_ip_check_defrag_ok()
|
H A D | decap_sanity.c | 60 err = sendto(sockfd, buf, sizeof(buf), 0, (void *)&addr, addrlen); in test_decap_sanity()
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/gnome-bluetooth/ |
H A D | gnome-bluetooth3_3.34.5.bb | 29 # just bluetooth-sendto / bluetooth-sendto.desktop only 36 # offer alternate bluetooth-sendto
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/blueman/ |
H A D | blueman_2.4.3.bb | 39 PACKAGECONFIG[thunar] = "-Dthunar-sendto=true,-Dthunar-sendto=false" 59 ${D}${bindir}/blueman-sendto \
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | sk_bind_sendto_listen.c | 37 if (sendto(fd1, NULL, 0, MSG_FASTOPEN, (struct sockaddr *)&bind_addr, in main() 59 if (sendto(fd2, NULL, 0, MSG_FASTOPEN, (struct sockaddr *)&bind_addr, in main()
|
H A D | ip_defrag.c | 194 res = sendto(fd_raw, ip_frame, frag_len, 0, addr, alen); in send_fragment() 315 res = sendto(fd_raw, ip_frame, frag_len, 0, addr, alen); in send_udp_frags()
|
/openbmc/google-misc/subprojects/nemora-postd/src/ |
H A D | socket_manager.cpp | 57 auto err = sendto(fd, serialized.c_str(), serialized.length(), 0, addr6, in SendDatagram() 70 err = sendto(fd, serialized.c_str(), serialized.length(), 0, addr4, in SendDatagram()
|
/openbmc/linux/tools/testing/selftests/netfilter/ |
H A D | sctp_collision.c | 67 ret = sendto(sd, buf, strlen(buf) + 1, 0, (struct sockaddr *)&daddr, len); in main() 83 ret = sendto(sd, buf, strlen(buf) + 1, 0, (struct sockaddr *)&daddr, len); in main()
|
H A D | audit_logread.c | 70 ret = sendto(fd, &msg, msg.nlh.nlmsg_len, 0, in audit_send()
|
/openbmc/docs/designs/mctp/ |
H A D | mctp-kernel.md | 253 #### `sendto()`, `sendmsg()`, `send()` & `write()`: transmit an MCTP message 255 An MCTP message is transmitted using one of the `sendto()`, `sendmsg()`, 256 `send()` or `write()` syscalls. Using `sendto()` as the primary example: 274 len = sendto(sd, buf, sizeof(buf), 0, 286 message buffer passed to `sendto()`. If a message integrity check is to be 298 Using `sendto()` or `sendmsg()` on a connected socket may override the remote 301 allocated through a call to `sendto()` or `sendmsg()` on a connected socket is 303 expired either by timeout or by a subsequent `sendto()`. 379 an expanded `struct sockaddr` to the `recvfrom()` and `sendto()` system calls. 396 If the `addrlen` specified to `sendto()` or `recvfrom()` is sufficient to [all …]
|
/openbmc/qemu/include/sysemu/ |
H A D | os-win32.h | 252 #undef sendto 253 #define sendto qemu_sendto_wrap macro
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/libndp/ |
H A D | libndp_1.9.bb | 7 file://0001-libndp-Fix-signature-of-sendto-API.patch \
|
/openbmc/linux/Documentation/networking/ |
H A D | j1939.rst | 187 socket or use ``send(2)``, ``sendto(2)``, ``sendmsg(2)`` and the ``recv*()`` counterpart 196 to ``bind(2)``, ``connect(2)``, ``sendto(2)`` and ``recvfrom(2)``. A ``write(2)`` with size 4 will 245 remote address from ``connect(2)``. Use ``sendto(2)`` to overwrite the destination 307 ``send(2)``, ``sendto(2)`` and ``sendmsg(2)`` take a 'flags' argument. Currently 399 /* Afterwards do a sendto(2) with data set to the NAME (Little Endian). If the 403 sendto(sock, dat, sizeof(dat), 0, (const struct sockaddr *)&saddr, sizeof(saddr)); 445 at this point we can use only ``sendto(2)`` or ``sendmsg(2)``. 460 sendto(sock, dat, sizeof(dat), 0, (const struct sockaddr *)&saddr, sizeof(saddr));
|
H A D | mctp.rst | 123 ``sendto()``, ``sendmsg()``, ``send()`` : transmit an MCTP message 126 An MCTP message is transmitted using one of the ``sendto()``, ``sendmsg()`` or 127 ``send()`` syscalls. Using ``sendto()`` as the primary example: 146 len = sendto(sd, buf, sizeof(buf), 0, 157 message buffer passed to ``sendto()``. If a message integrity check is to be
|
/openbmc/linux/arch/um/drivers/ |
H A D | mconsole_user.c | 156 n = sendto(req->originating_fd, &reply, len, 0, in mconsole_reply_len() 211 n = sendto(notify_sock, &packet, len, 0, (struct sockaddr *) &target, in mconsole_notify()
|
/openbmc/openbmc/meta-security/recipes-mac/smack/udp-smack-test/ |
H A D | udp_client.c | 66 ret = sendto(sock, message, strlen(message),0,(const struct sockaddr*)&server_addr, in main()
|
/openbmc/linux/drivers/rpmsg/ |
H A D | rpmsg_internal.h | 69 int (*sendto)(struct rpmsg_endpoint *ept, void *data, int len, u32 dst); member
|
/openbmc/slpd-lite/ |
H A D | sock_channel.cpp | 98 sendto(sockfd, // File Descriptor in write()
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_skb_cgroup_id_user.c | 64 if (sendto(fd, &msg, sizeof(msg), 0, (const struct sockaddr *)&dst, in send_packet()
|
/openbmc/linux/tools/bpf/bpftool/Documentation/ |
H A D | bpftool-cgroup.rst | 105 **sendmsg4** call to sendto(2), sendmsg(2), sendmmsg(2) for an 107 **sendmsg6** call to sendto(2), sendmsg(2), sendmmsg(2) for an
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/chrony/chrony/ |
H A D | arm_eabi.patch | 60 SCMP_SYS(sendto),
|