From fea48c77b33861d80d2ad08e4aebdc016ae1a971 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 13 Jan 2013 23:37:58 +0100 Subject: [PATCH] main: enhancement, minor stuff --- src/main.cpp | 30 +++++++++++++++++++++++++++--- src/serialization.cpp | 5 +++++ 2 files changed, 32 insertions(+), 3 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 16df632..5acbe76 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ #include /* - * main module. Parse options, fire up stuff, pass commands to it. + * output helpers */ #define out(x) std::cout << x << std::endl @@ -39,16 +39,31 @@ void print_help (char*pname) out ("Usage: " << pname << " [options]"); outeol; out ("Options consist of:"); - out (" -h, --help display this help"); + out (" -h, --help display this help"); out (" -V,--version display version information"); + out (" -T perform some testing stuff"); } +/* + * testing + */ + +void test() +{ + //stuff gets tested here. +} + +/* + * main module. Parse options, fire up stuff, pass commands to it. + */ + #include int main (int argc, char**argv) { bool do_help = false; bool do_version = false; + bool do_test = false; bool has_opt = false; //process options @@ -60,7 +75,7 @@ int main (int argc, char**argv) {0, 0, 0, 0 } }; - c = getopt_long (argc, argv, "hV", long_opts, &option_index); + c = getopt_long (argc, argv, "hVT", long_opts, &option_index); if (c == -1) break; has_opt = true; @@ -73,6 +88,9 @@ int main (int argc, char**argv) case 'V': do_version = true; break; + case 'T': + do_test = true; + break; default: //which doesn't just happen. break; } @@ -92,6 +110,12 @@ int main (int argc, char**argv) print_version(); return 0; } + + if (do_test) { + test(); + return 0; + } + return 0; } diff --git a/src/serialization.cpp b/src/serialization.cpp index ff72eae..4dd2553 100644 --- a/src/serialization.cpp +++ b/src/serialization.cpp @@ -151,6 +151,11 @@ bool polynomial::unserialize (sencode* s) return unserialize_uint_vector (this, s); } +/* + * TODO -- all keys should have some kind of identification stored with them, + * so they don't get mistaken with other key types. Do it. + */ + sencode* mce::privkey::serialize() { sencode_list*l = new sencode_list;