#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
-#include <stdbool.h>
+HEADER #include <stdbool.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
errno = errno_;
return (r==MAP_FAILED) ? NULL : r;
}
+
+// on error, fd remains unchanged, no matter whether you specified "keep" or not
+HEADER #define JH_OBS_KEEPFD 1
+HEADER #define JH_OBS_BUFFER 2
+PUBLIC_FN int fopen_bistream(FILE **in, FILE **out, int fd, int flags) {
+ // check input
+ if (fd < 0) goto err_out;
+ bool keep = flags & JH_OBS_KEEPFD;
+ bool buffer = flags & JH_OBS_BUFFER;
+
+ // create input FILE*
+ int in_fd = dup(fd);
+ if (in_fd < 0) goto err_out;
+ *in = fdopen(in_fd, "r");
+ if (!*in) { close(in_fd); goto err_out; }
+
+ // create output FILE*
+ int out_fd = keep ? dup(fd) : fd;
+ if (out_fd < 0) goto err_dup_out;
+ *out = fdopen(out_fd, "w");
+ if (!*out) { if (keep) close(out_fd); goto err_dup_out; }
+
+ // avoid buffering data unless the caller really wants it
+ if (!buffer) setbuf(*out, NULL);
+
+ // success!
+ return 0;
+
+
+err_dup_out:
+ fclose(*in);
+err_out:
+ return EAI_SYSTEM;
+}
\ No newline at end of file
freeaddrinfo(addrs);
return EAI_SYSTEM;
}
+
+PUBLIC_FN int fnetopen(FILE **in, FILE **out, const char *node, const char *service, const struct addrinfo *hints) {
+ int fd = netopen(node, service, hints);
+ if (fd < 0) return EAI_SYSTEM;
+ int ret = fopen_bistream(in, out, fd, 0);
+ if (ret) close(fd);
+ return ret;
+}
\ No newline at end of file