X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Fsilcer%2Fsrc%2Fsilcerapp.cc;h=e04ee1d629efe91a7bd649665508841140099634;hb=a818c5b5411bbc4436d1c5f011236985c96bb787;hp=79e644b946666d1288ac45a10d37cd2ff21d9428;hpb=f866f092a5c966f2dddec9e3d030bd9f1462d083;p=silc.git diff --git a/apps/silcer/src/silcerapp.cc b/apps/silcer/src/silcerapp.cc index 79e644b9..e04ee1d6 100644 --- a/apps/silcer/src/silcerapp.cc +++ b/apps/silcer/src/silcerapp.cc @@ -27,6 +27,8 @@ #include #include +#include "silcversion.h" + // Pointer to the application SilcerApp *Silcer_App; string package = "silcer"; @@ -46,7 +48,7 @@ silc_create_key_pair(char *pkcs_name, int bits, char *path, SilcPrivateKey prv_key; SilcRng rng; unsigned char *key; - uint32 key_len; + SilcUInt32 key_len; char pkfile[256], prvfile[256]; if (!pkcs_name || !path) @@ -142,7 +144,7 @@ void silc_disconnect(SilcClient client, SilcClientConnection conn) static void silc_auth_meth(SilcClient client, SilcClientConnection conn, - char *hostname, uint16 port, + char *hostname, SilcUInt16 port, SilcGetAuthMeth completion, void *context) { completion(TRUE, SILC_AUTH_NONE, NULL, 0, context); @@ -151,7 +153,7 @@ void silc_auth_meth(SilcClient client, static void silc_verify_public_key(SilcClient client, SilcClientConnection conn, SilcSocketType conn_type, unsigned char *pk, - uint32 pk_len, SilcSKEPKType pk_type, + SilcUInt32 pk_len, SilcSKEPKType pk_type, SilcVerifyPublicKey completion, void *context) { completion(TRUE, context); @@ -218,12 +220,22 @@ SilcerApp::SilcerApp(int argc, char **argv) silc_pkcs_register_default(); silc_hash_register_default(); silc_hmac_register_default(); + + // XXXXX + // In real application at this point it would be of course checked + // whether ~/.silc direectory or something exists and key pair exists. + // If not then some firstsetup-wizard would be lauched that creates + // the keypair. In our example we'll always create a key pair. :( silc_create_key_pair("rsa", 1024, "kk", "UN=foobar, " "HN=foo.bar.foobar.com", &silc_client->public_key, &silc_client->private_key); + + // We are ready to initialize the SILC Client library. silc_client_init(silc_client); - // Setup SILC scheduler as timeout task + // Setup SILC scheduler as timeout task. This will handle the SILC + // client library every 50 milliseconds. It will actually make the + // SILC client work on background. Gnome::Main::timeout.connect(slot(this, &SilcerApp::silc_scheduler), 50); // XXXXX