aboutsummaryrefslogtreecommitdiff
path: root/ssh/util.h
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2020-06-25 22:47:10 +0200
committerTom Smeding <tom.smeding@gmail.com>2020-06-25 22:47:10 +0200
commit4d4cbdaf49f616fea47c543fe2cb74d1d8a1e7ff (patch)
tree7aaee63e8fd4e87640efa5c3a63ffe7926c10fae /ssh/util.h
parent0c7c46894d41dd976e6ee4587c29df1fc62d7459 (diff)
ssh: WIP ssh proxy server
Diffstat (limited to 'ssh/util.h')
-rw-r--r--ssh/util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/ssh/util.h b/ssh/util.h
new file mode 100644
index 0000000..0ca7d45
--- /dev/null
+++ b/ssh/util.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include <stdbool.h>
+
+
+// Returns whether successful.
+bool parse_host_port(const char *arg, const char **server_host, int *port);