mosquitto/src/mux.c
2020-12-01 20:46:56 +00:00

89 lines
1.8 KiB
C

/*
Copyright (c) 2009-2019 Roger Light <roger@atchoo.org>
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
and Eclipse Distribution License v1.0 which accompany this distribution.
The Eclipse Public License is available at
https://www.eclipse.org/legal/epl-2.0/
and the Eclipse Distribution License is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR EDL-1.0
Contributors:
Roger Light - initial implementation and documentation.
Tatsuzo Osawa - Add epoll.
*/
#include "mux.h"
int mux__init(struct mosquitto__listener_sock *listensock, int listensock_count)
{
#ifdef WITH_EPOLL
return mux_epoll__init(listensock, listensock_count);
#else
return mux_poll__init(listensock, listensock_count);
#endif
}
int mux__add_out(struct mosquitto *context)
{
#ifdef WITH_EPOLL
return mux_epoll__add_out(context);
#else
return mux_poll__add_out(context);
#endif
}
int mux__remove_out(struct mosquitto *context)
{
#ifdef WITH_EPOLL
return mux_epoll__remove_out(context);
#else
return mux_poll__remove_out(context);
#endif
}
int mux__add_in(struct mosquitto *context)
{
#ifdef WITH_EPOLL
return mux_epoll__add_in(context);
#else
return mux_poll__add_in(context);
#endif
}
int mux__delete(struct mosquitto *context)
{
#ifdef WITH_EPOLL
return mux_epoll__delete(context);
#else
return mux_poll__delete(context);
#endif
}
int mux__handle(struct mosquitto__listener_sock *listensock, int listensock_count)
{
#ifdef WITH_EPOLL
return mux_epoll__handle(listensock, listensock_count);
#else
return mux_poll__handle(listensock, listensock_count);
#endif
}
int mux__cleanup(void)
{
#ifdef WITH_EPOLL
return mux_epoll__cleanup();
#else
return mux_poll__cleanup();
#endif
}