summaryrefslogtreecommitdiff
path: root/chat.c
diff options
context:
space:
mode:
authorC. McEnroe2020-02-10 05:50:28 -0500
committerC. McEnroe2020-02-10 05:50:28 -0500
commit0d93e66a68ded28440e20cd7012b4e8b0c705fc6 (patch)
tree110b83877027e09361e2d361e94a57ead6524fca /chat.c
parenta91f975e9b86859f3605c75e42d52e73b1511101 (diff)
Add -H
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/chat.c b/chat.c
index ff74485..c58fdc5 100644
--- a/chat.c
+++ b/chat.c
@@ -21,6 +21,7 @@
#include <poll.h>
#include <signal.h>
#include <stdbool.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -46,6 +47,8 @@ size_t idNext = Network + 1;
struct Self self = { .color = Default };
+uint32_t hashInit;
+
int procPipe[2] = { -1, -1 };
static void pipeRead(void) {
@@ -81,10 +84,11 @@ int main(int argc, char *argv[]) {
const char *user = NULL;
const char *real = NULL;
- const char *Opts = "!C:O:a:c:eh:j:k:n:p:r:u:vw:";
+ const char *Opts = "!C:H:O:a:c:eh:j:k:n:p:r:u:vw:";
const struct option LongOpts[] = {
{ "insecure", no_argument, NULL, '!' },
{ "copy", required_argument, NULL, 'C' },
+ { "hash", required_argument, NULL, 'H' },
{ "open", required_argument, NULL, 'O' },
{ "sasl-plain", required_argument, NULL, 'a' },
{ "cert", required_argument, NULL, 'c' },
@@ -106,6 +110,7 @@ int main(int argc, char *argv[]) {
switch (opt) {
break; case '!': insecure = true;
break; case 'C': urlCopyUtil = optarg;
+ break; case 'H': hashInit = strtoul(optarg, NULL, 0);
break; case 'O': urlOpenUtil = optarg;
break; case 'a': sasl = true; self.plain = optarg;
break; case 'c': cert = optarg;