Functions
dn_udp.c File Reference
#include "stdint.h"
#include <string.h>
#include "dn_additional.h"
#include "dn_common.h"
#include "dn_device.h"
#include "dn_socket.h"
#include "dn_udp.h"
Include dependency graph for dn_udp.c:

Go to the source code of this file.

Functions

HRESULT udp_check_sockaddr (const struct sockaddr_in *sock_to, const struct sockaddr_in *sock_from)
 Checks the socket address. If sock_to and sock_from are equivalent, then returns S_OK.
HRESULT udp_clear (int sock, uint32_t timeout)
 Clears the received buffer.
HRESULT udp_close (int *sock)
 Closes the socket.
HRESULT udp_open (void *param, int *sock)
 Opens UDP socket.
HRESULT udp_recv (int sock, char *buf, uint32_t len_buf, uint32_t *len_recved, uint32_t timeout, void *arg)
 Receives UDP packet.
HRESULT udp_send (int sock, const char *buf, uint32_t len_buf, void *arg)
 Sends UDP packet.
HRESULT udp_set_timeout (int sock, uint32_t timeout)
 Sets timeout value to the UDP socket.

Function Documentation

HRESULT udp_check_sockaddr ( const struct sockaddr_in sock_to,
const struct sockaddr_in sock_from 
)

Checks the socket address. If sock_to and sock_from are equivalent, then returns S_OK.

Parameters:
[in]sock_toThe socket address of sender.
[in]sock_fromThe socket address of receiver.

Definition at line 216 of file dn_udp.c.

HRESULT udp_clear ( int  sock,
uint32_t  timeout 
)

Clears the received buffer.

Parameters:
[in]sockThe socket to be cleared.
[in]timeoutTimeout value.

Definition at line 185 of file dn_udp.c.

HRESULT udp_close ( int *  sock)

Closes the socket.

Parameters:
[in,out]sockThe socket to be closed.

Definition at line 80 of file dn_udp.c.

HRESULT udp_open ( void *  param,
int *  sock 
)

Opens UDP socket.

Parameters:
[in]paramThe pointer of Ethernet connection parameters: CONN_PARAM_ETH.
[out]sockThe created socket.

Software License Agreement (MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Parameters:
[in]paramThe pointer of Ethernet connection parameters: CONN_PARAM_ETH.
[out]sockThe created socket.

Definition at line 52 of file dn_udp.c.

HRESULT udp_recv ( int  sock,
char *  buf,
uint32_t  len_buf,
uint32_t len_recved,
uint32_t  timeout,
void *  arg 
)

Receives UDP packet.

Parameters:
[in]sockThe socket to receive.
[out]bufThe buffer to be received.
[in]len_bufThe allocated size of received buffer.
[out]len_recvedThe size of received buffer.
[in]argSpecial parameter: udpaddr.

Definition at line 135 of file dn_udp.c.

HRESULT udp_send ( int  sock,
const char *  buf,
uint32_t  len_buf,
void *  arg 
)

Sends UDP packet.

Parameters:
[in]sockThe socket to send.
[in]bufThe buffer to be sent.
[in]len_bufThe size of sent buffer.
[in]argSpecial parameter: udpaddr.

Definition at line 94 of file dn_udp.c.

HRESULT udp_set_timeout ( int  sock,
uint32_t  timeout 
)

Sets timeout value to the UDP socket.

Parameters:
[in]sockThe socket to be set.
[in]timeoutTimeout value.

Definition at line 173 of file dn_udp.c.



bcap_core
Author(s): DENSO WAVE INCORPORATED
autogenerated on Thu Jun 6 2019 21:00:03