1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/* Copyright (c) 2002,2003 Sam Trenholme
*
* TERMS
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* This software is provided 'as is' with no guarantees of correctness or
* fitness for purpose.
*/
/* This tests the parsing of the MaraDNSRcParse routines */
#include "../libs/MaraHash.h"
#include "../MaraDns.h"
#include <stdio.h>
main() {
js_string *line, *v1, *v2, *v3;
js_file *f;
uint32 ttl;
line = js_create(256,1);
v1 = js_create(256,1);
v2 = js_create(256,1);
v3 = js_create(256,1);
f = js_alloc(1,sizeof(js_file));
js_qstr2js(v1,"example_csv1");
js_set_encode(v1,MARA_LOCALE);
js_set_encode(v2,MARA_LOCALE);
js_set_encode(v3,MARA_LOCALE);
js_set_encode(line,MARA_LOCALE);
js_open_read(v1,f);
while(!js_buf_eof(f)) {
js_buf_getline(f,line);
printf("\nLine: ");
js_show_stdout(line);
printf("Pre-processed line: ");
js_qstr2js(v1,"example.com.");
bs_process(line,v3,v1);
js_show_stdout(v3);
printf("%s%d%s","Parse value: ",
parse_csv1_line(v3,v1,v2,&ttl),"\n");
printf("TTL: %d\n",ttl);
printf("Name: ");
js_show_stdout(v1);
printf("\nData: ");
js_show_stdout(v2);
printf("\n");
}
}
|