summaryrefslogtreecommitdiffstats
path: root/support/include/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/include/misc.h')
-rw-r--r--support/include/misc.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/support/include/misc.h b/support/include/misc.h
new file mode 100644
index 0000000..a3cdcfd
--- /dev/null
+++ b/support/include/misc.h
@@ -0,0 +1,24 @@
+/*
+ * misc.h All that didn't fit elsewhere.
+ *
+ * Copyright (C) 1995 Olaf Kirch <okir@monad.swb.de>
+ */
+
+#ifndef MISC_H
+#define MISC_H
+
+/*
+ * Generate random key, returning the length of the result. Currently,
+ * weakrandomkey generates a maximum of 20 bytes are generated, but this
+ * may change with future implementations.
+ */
+int randomkey(unsigned char *keyout, int len);
+int weakrandomkey(unsigned char *keyout, int len);
+
+int matchhostname(const char *h1, const char *h2);
+
+struct hostent;
+struct hostent *hostent_dup(struct hostent *hp);
+struct hostent *get_hostent (const char *addr, int len, int type);
+
+#endif /* MISC_H */