diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-21 12:44:00 +0000 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-10-21 12:44:00 +0000 |
commit | 482c44232d4deda3f89a7d85fbad99c1c64e80ec (patch) | |
tree | f3fb790d93da3cbe198b0f0c58d9c7513b0eff23 /include/ouroboros/select.h | |
parent | 680017a72c7a15b90f223bafcea80fd3e264e984 (diff) | |
parent | 02976060919566d1a217b818ca8f33297700d56d (diff) | |
download | ouroboros-482c44232d4deda3f89a7d85fbad99c1c64e80ec.tar.gz ouroboros-482c44232d4deda3f89a7d85fbad99c1c64e80ec.zip |
Merged in dstaesse/ouroboros/be-demux (pull request #267)
lib: Demultiplex the fast path
Diffstat (limited to 'include/ouroboros/select.h')
-rw-r--r-- | include/ouroboros/select.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/include/ouroboros/select.h b/include/ouroboros/select.h deleted file mode 100644 index de309b8d..00000000 --- a/include/ouroboros/select.h +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Ouroboros - Copyright (C) 2016 - * - * A select call for flows - * - * Dimitri Staessens <dimitri.staessens@intec.ugent.be> - * Sander Vrijders <sander.vrijders@intec.ugent.be> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 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, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ - -#ifndef OUROBOROS_SELECT_H -#define OUROBOROS_SELECT_H - -#include <stdbool.h> -#include <time.h> - -struct flow_set; - -typedef struct flow_set flow_set_t; - -flow_set_t * flow_set_create(); - -void flow_set_destroy(flow_set_t * set); - -void flow_set_zero(flow_set_t * set); - -void flow_set_add(flow_set_t * set, - int fd); - -void flow_set_del(flow_set_t * set, - int fd); - -bool flow_set_has(flow_set_t * set, - int fd); - -int flow_select(flow_set_t * set, - const struct timespec * timeout); - -#endif /* OUROBOROS_SELECT_H */ |