Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmbroz Bizjak <ambrop7@gmail.com>2014-12-20 17:40:18 +0300
committerAmbroz Bizjak <ambrop7@gmail.com>2014-12-20 17:40:18 +0300
commit5f05470cd7fd141e6fcaea708fd6ef6868eb5d4f (patch)
tree2542fcc77ac071572970743c9d4f0c6b559708b5 /examples
parent9f1067e51aefac0c27e74b4f0cf3e14e4f1b1415 (diff)
ncd: Implement Do.
Diffstat (limited to 'examples')
-rw-r--r--examples/ncd_tokenizer_test.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/ncd_tokenizer_test.c b/examples/ncd_tokenizer_test.c
index 622cc4c..2ab1ef9 100644
--- a/examples/ncd_tokenizer_test.c
+++ b/examples/ncd_tokenizer_test.c
@@ -126,6 +126,9 @@ static int tokenizer_output (void *user, int token, char *value, size_t value_le
case NCD_TOKEN_CARET:
printf("caret\n");
break;
+ case NCD_TOKEN_DO:
+ printf("do\n");
+ break;
default:
printf("UNKNOWN_TOKEN\n");
break;