about summary refs log tree commit homepage
path: root/ext/kgio/kgio.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/kgio/kgio.h')
-rw-r--r--ext/kgio/kgio.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/ext/kgio/kgio.h b/ext/kgio/kgio.h
new file mode 100644
index 0000000..83a247c
--- /dev/null
+++ b/ext/kgio/kgio.h
@@ -0,0 +1,40 @@
+#ifndef KGIO_H
+#define KGIO_H
+
+#include <ruby.h>
+#ifdef HAVE_RUBY_IO_H
+#  include <ruby/io.h>
+#else
+#  include <rubyio.h>
+#endif
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/un.h>
+#include <netinet/in.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <arpa/inet.h>
+#include <assert.h>
+
+#include "missing/ancient_ruby.h"
+#include "nonblock.h"
+#include "my_fileno.h"
+
+struct io_args {
+        VALUE io;
+        VALUE buf;
+        char *ptr;
+        long len;
+        int fd;
+};
+
+void init_kgio_wait(VALUE mKgio);
+void init_kgio_read_write(VALUE mKgio);
+void init_kgio_accept(VALUE mKgio);
+void init_kgio_connect(VALUE mKgio);
+
+void kgio_wait_writable(VALUE io, int fd);
+void kgio_wait_readable(VALUE io, int fd);
+
+#endif /* KGIO_H */