]>
git.proxmox.com Git - mirror_edk2.git/blob - StdLib/BsdSocketLib/send.c
2 Implement the send API.
4 Copyright (c) 2011, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #include <SocketInternals.h>
19 Send data using a network connection.
21 The send routine queues data to the network for transmission.
22 This routine is typically used for SOCK_STREAM sockets where the target
23 system was specified in the ::connect call.
26 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/send.html">POSIX</a>
27 documentation is available online.
29 @param [in] s Socket file descriptor returned from ::socket.
31 @param [in] buffer Address of a buffer containing the data to send.
33 @param [in] length Length of the buffer in bytes.
35 @param [in] flags Message control flags
37 @return This routine returns the number of data bytes that were
38 sent and -1 when an error occurs. In the case of
39 an error, ::errno contains more details.
53 return sendto ( s
, buffer
, length
, flags
, NULL
, 0 );