summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_fd.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-03 11:18:14 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-03 19:58:50 +0100
commite928d863e2bb654d16ac9094e3406ef6a207c023 (patch)
tree183aacf6343cfa7293ce0d51dadd83ddd74207bc /lib/tevent/tevent_fd.c
parent1a26b67ee395ab49eb57a3773ec889f4ebbccb08 (diff)
downloadsamba-e928d863e2bb654d16ac9094e3406ef6a207c023.tar.gz
samba-e928d863e2bb654d16ac9094e3406ef6a207c023.tar.bz2
samba-e928d863e2bb654d16ac9094e3406ef6a207c023.zip
tevent: move some common tevent_fd related functions into tevent_fd.c
metze
Diffstat (limited to 'lib/tevent/tevent_fd.c')
-rw-r--r--lib/tevent/tevent_fd.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/tevent/tevent_fd.c b/lib/tevent/tevent_fd.c
new file mode 100644
index 0000000000..eb9cdab531
--- /dev/null
+++ b/lib/tevent/tevent_fd.c
@@ -0,0 +1,36 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ common events code for fd events
+
+ Copyright (C) Stefan Metzmacher 2009
+
+ 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 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 <http://www.gnu.org/licenses/>.
+*/
+
+#include "replace.h"
+#include "tevent.h"
+#include "tevent_internal.h"
+#include "tevent_util.h"
+
+uint16_t tevent_common_fd_get_flags(struct tevent_fd *fde)
+{
+ return fde->flags;
+}
+
+void tevent_common_fd_set_flags(struct tevent_fd *fde, uint16_t flags)
+{
+ if (fde->flags == flags) return;
+ fde->flags = flags;
+}