2016-01-28 16:44:47 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
Copyright (c) 2015-2016 Chung, Hyung-Hwan. All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
|
|
|
|
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WAfRRANTIES
|
|
|
|
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _STIO_UDP_H_
|
|
|
|
#define _STIO_UDP_H_
|
|
|
|
|
|
|
|
#include <stio.h>
|
2016-02-02 15:40:09 +00:00
|
|
|
#include <stio-sck.h>
|
2016-01-28 16:44:47 +00:00
|
|
|
|
|
|
|
typedef struct stio_dev_udp_t stio_dev_udp_t;
|
|
|
|
|
2016-02-02 15:40:09 +00:00
|
|
|
typedef int (*stio_dev_udp_on_read_t) (stio_dev_udp_t* dev, const void* data, stio_len_t len);
|
|
|
|
typedef int (*stio_dev_udp_on_write_t) (stio_dev_udp_t* dev, void* wrctx);
|
2016-01-31 02:05:39 +00:00
|
|
|
|
|
|
|
typedef struct stio_dev_udp_make_t stio_dev_udp_make_t;
|
|
|
|
struct stio_dev_udp_make_t
|
|
|
|
{
|
|
|
|
/* TODO: options: REUSEADDR for binding?? */
|
|
|
|
stio_sckadr_t addr; /* binding address. */
|
2016-02-02 15:40:09 +00:00
|
|
|
stio_dev_udp_on_write_t on_write;
|
|
|
|
stio_dev_udp_on_read_t on_read;
|
2016-01-31 02:05:39 +00:00
|
|
|
};
|
|
|
|
|
2016-01-28 16:44:47 +00:00
|
|
|
struct stio_dev_udp_t
|
|
|
|
{
|
|
|
|
STIO_DEV_HEADERS;
|
|
|
|
stio_sckhnd_t sck;
|
|
|
|
stio_sckadr_t peer;
|
|
|
|
|
2016-02-02 15:40:09 +00:00
|
|
|
stio_dev_udp_on_write_t on_write;
|
|
|
|
stio_dev_udp_on_read_t on_read;
|
2016-01-31 02:05:39 +00:00
|
|
|
};
|
2016-01-28 16:44:47 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2016-01-30 05:24:23 +00:00
|
|
|
STIO_EXPORT stio_dev_udp_t* stio_dev_udp_make (
|
2016-01-31 02:05:39 +00:00
|
|
|
stio_t* stio,
|
|
|
|
stio_size_t xtnsize,
|
|
|
|
const stio_dev_udp_make_t* data
|
2016-01-28 16:44:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2016-02-05 13:25:59 +00:00
|
|
|
#if defined(STIO_HAVE_INLINE)
|
|
|
|
|
|
|
|
static STIO_INLINE int stio_dev_udp_read (stio_dev_udp_t* udp, int enabled)
|
|
|
|
{
|
|
|
|
return stio_dev_read ((stio_dev_t*)udp, enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
static STIO_INLINE int stio_dev_udp_write (stio_dev_udp_t* udp, const void* data, stio_len_t len, void* wrctx)
|
|
|
|
{
|
|
|
|
return stio_dev_write ((stio_dev_t*)udp, data, len, wrctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static STIO_INLINE int stio_dev_udp_timedwrite (stio_dev_udp_t* udp, const void* data, stio_len_t len, const stio_ntime_t* tmout, void* wrctx)
|
|
|
|
{
|
|
|
|
return stio_dev_timedwrite ((stio_dev_t*)udp, data, len, tmout, wrctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static STIO_INLINE void stio_dev_udp_halt (stio_dev_udp_t* udp)
|
|
|
|
{
|
|
|
|
stio_dev_halt ((stio_dev_t*)udp);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define stio_dev_udp_read(udp,enabled) stio_dev_read((stio_dev_t*)udp, enabled)
|
|
|
|
#define stio_dev_udp_write(udp,data,len,wrctx) stio_dev_write((stio_dev_t*)udp, data, len, wrctx)
|
|
|
|
#define stio_dev_udp_timedwrite(udp,data,len,tmout,wrctx) stio_dev_timedwrite((stio_dev_t*)udp, data, len, tmout, wrctx)
|
|
|
|
#define stio_dev_udp_halt(udp) stio_dev_halt((stio_dev_t*)udp)
|
|
|
|
|
|
|
|
#endif
|
2016-01-28 16:44:47 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|