]>
Commit | Line | Data |
---|---|---|
1 | /* | |
2 | * Copyright (C) 2008 Martin Willi | |
3 | * | |
4 | * Copyright (C) secunet Security Networks AG | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify it | |
7 | * under the terms of the GNU General Public License as published by the | |
8 | * Free Software Foundation; either version 2 of the License, or (at your | |
9 | * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, but | |
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | |
13 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 | * for more details. | |
15 | */ | |
16 | ||
17 | #include <stdio.h> | |
18 | ||
19 | #include <library.h> | |
20 | #include <utils/identification.h> | |
21 | ||
22 | /** | |
23 | * convert an identity to type and encoding | |
24 | */ | |
25 | int main(int argc, char *argv[]) | |
26 | { | |
27 | identification_t *id; | |
28 | chunk_t enc; | |
29 | int i; | |
30 | ||
31 | library_init(NULL, "id2sql"); | |
32 | atexit(library_deinit); | |
33 | ||
34 | if (argc < 2) | |
35 | { | |
36 | return -1; | |
37 | } | |
38 | ||
39 | id = identification_create_from_string(argv[1]); | |
40 | if (!id) | |
41 | { | |
42 | return -2; | |
43 | } | |
44 | printf("type\tencoding\n"); | |
45 | printf("%d,\t", id->get_type(id)); | |
46 | enc = id->get_encoding(id); | |
47 | ||
48 | printf("X'"); | |
49 | for (i = 0; i < enc.len; i++) | |
50 | { | |
51 | printf("%02x", (unsigned int)enc.ptr[i]); | |
52 | } | |
53 | printf("'\n"); | |
54 | id->destroy(id); | |
55 | return 0; | |
56 | } | |
57 |