summaryrefslogtreecommitdiff
path: root/ucspi-tcp-0.88/commands.c
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2012-06-01 23:07:51 -0700
committerJohn Denker <jsd@av8n.com>2012-06-02 17:30:23 -0700
commit0d0f7a0e7c32842edff533246a1f8523306f9ab0 (patch)
tree43dbb2fffaa8d490731969f39f5d20832523bd5d /ucspi-tcp-0.88/commands.c
parent94c58d7f8cabd9b1ff4c33c57a6ff76cdf3f955e (diff)
as downloaded : ucspi-tcp
Diffstat (limited to 'ucspi-tcp-0.88/commands.c')
-rw-r--r--ucspi-tcp-0.88/commands.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/ucspi-tcp-0.88/commands.c b/ucspi-tcp-0.88/commands.c
new file mode 100644
index 0000000..b2dc77d
--- /dev/null
+++ b/ucspi-tcp-0.88/commands.c
@@ -0,0 +1,39 @@
+#include "buffer.h"
+#include "stralloc.h"
+#include "str.h"
+#include "case.h"
+#include "commands.h"
+
+static stralloc cmd = {0};
+
+int commands(buffer *ss,struct commands *c)
+{
+ int i;
+ char *arg;
+ char ch;
+
+ for (;;) {
+ if (!stralloc_copys(&cmd,"")) return -1;
+
+ for (;;) {
+ i = buffer_get(ss,&ch,1);
+ if (i != 1) return i;
+ if (ch == '\n') break;
+ if (!ch) ch = '\n';
+ if (!stralloc_append(&cmd,&ch)) return -1;
+ }
+
+ if (cmd.len > 0) if (cmd.s[cmd.len - 1] == '\r') --cmd.len;
+
+ if (!stralloc_0(&cmd)) return -1;
+
+ i = str_chr(cmd.s,' ');
+ arg = cmd.s + i;
+ while (*arg == ' ') ++arg;
+ cmd.s[i] = 0;
+
+ for (i = 0;c[i].verb;++i) if (case_equals(c[i].verb,cmd.s)) break;
+ c[i].action(arg);
+ if (c[i].flush) c[i].flush();
+ }
+}