open5gs/lib/core/ogs-poll-private.h

60 lines
1.4 KiB
C

/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef OGS_POLL_PRIVATE_H
#define OGS_POLL_PRIVATE_H
#if !defined(OGS_CORE_COMPILATION)
#error "This private header cannot be included directly."
#endif
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ogs_poll_s {
ogs_lnode_t node;
int index;
short when;
ogs_socket_t fd;
ogs_poll_handler_f handler;
void *data;
ogs_pollset_t *pollset;
} ogs_poll_t;
typedef struct ogs_pollset_s {
void *context;
OGS_POOL(pool, ogs_poll_t);
struct {
ogs_socket_t fd[2];
ogs_poll_t *poll;
} notify;
unsigned int capacity;
} ogs_pollset_t;
#ifdef __cplusplus
}
#endif
#endif /* OGS_POLL_PRIVATE_H */