123 lines
2.0 KiB
C
123 lines
2.0 KiB
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-06-06 ChenYong First version
|
|
*/
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <netdb.h>
|
|
#include <sal.h>
|
|
|
|
#include <at_socket.h>
|
|
#include <af_inet.h>
|
|
|
|
#ifdef SAL_USING_POSIX
|
|
#include <dfs_poll.h>
|
|
#endif
|
|
|
|
#ifdef SAL_USING_AT
|
|
|
|
#ifdef SAL_USING_POSIX
|
|
static int at_poll(struct dfs_fd *file, struct rt_pollreq *req)
|
|
{
|
|
int mask = 0;
|
|
struct at_socket *sock;
|
|
struct sal_socket *sal_sock;
|
|
|
|
sal_sock = sal_get_socket((int) file->data);
|
|
if(!sal_sock)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
sock = at_get_socket((int)sal_sock->user_data);
|
|
if (sock != NULL)
|
|
{
|
|
rt_base_t level;
|
|
|
|
rt_poll_add(&sock->wait_head, req);
|
|
|
|
level = rt_hw_interrupt_disable();
|
|
if (sock->rcvevent)
|
|
{
|
|
mask |= POLLIN;
|
|
}
|
|
if (sock->sendevent)
|
|
{
|
|
mask |= POLLOUT;
|
|
}
|
|
if (sock->errevent)
|
|
{
|
|
mask |= POLLERR;
|
|
}
|
|
rt_hw_interrupt_enable(level);
|
|
}
|
|
|
|
return mask;
|
|
}
|
|
#endif
|
|
|
|
static const struct sal_socket_ops at_socket_ops =
|
|
{
|
|
at_socket,
|
|
at_closesocket,
|
|
at_bind,
|
|
NULL,
|
|
at_connect,
|
|
NULL,
|
|
at_sendto,
|
|
at_recvfrom,
|
|
at_getsockopt,
|
|
at_setsockopt,
|
|
at_shutdown,
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
|
|
#ifdef SAL_USING_POSIX
|
|
at_poll,
|
|
#endif /* SAL_USING_POSIX */
|
|
};
|
|
|
|
static int at_create(struct sal_socket *socket, int type, int protocol)
|
|
{
|
|
RT_ASSERT(socket);
|
|
|
|
//TODO Check type & protocol
|
|
|
|
socket->ops = &at_socket_ops;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct sal_proto_ops at_proto_ops =
|
|
{
|
|
at_gethostbyname,
|
|
NULL,
|
|
at_getaddrinfo,
|
|
at_freeaddrinfo,
|
|
};
|
|
|
|
static const struct sal_proto_family at_inet_family =
|
|
{
|
|
AF_AT,
|
|
AF_INET,
|
|
at_create,
|
|
&at_proto_ops,
|
|
};
|
|
|
|
int at_inet_init(void)
|
|
{
|
|
sal_proto_family_register(&at_inet_family);
|
|
|
|
return 0;
|
|
}
|
|
INIT_COMPONENT_EXPORT(at_inet_init);
|
|
|
|
#endif /* SAL_USING_AT */
|