aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation.c
blob: ad91d300738d8d05f1af533b1242df0deb8e36c0 (plain) (blame)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
/*
  This file is part of GNUnet.
  (C) 2013 Christian Grothoff (and other contributing authors)
  
  GNUnet is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published
  by the Free Software Foundation; either version 3, or (at your
  option) any later version.
  
  GNUnet is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  General Public License for more details.
  
  You should have received a copy of the GNU General Public License
  along with GNUnet; see the file COPYING.  If not, write to the
  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  Boston, MA 02111-1307, USA.
*/
/**
 * @file conversation/gnunet-conversation.c
 * @brief conversation implementation
 * @author Simon Dieterle
 * @author Andreas Fuchs
 */
#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_constants.h"
#include "gnunet_conversation_service.h"
#include "gnunet_namestore_service.h"


/**
 * Maximum length allowed for the command line input.
 */
#define MAX_MESSAGE_LENGTH 1024


/**
 * Possible states of the program.
 */
enum ConversationState
{
  /**
   * We're waiting for our own idenitty.
   */
  CS_LOOKUP_EGO,

  /**
   * We're listening for calls
   */
  CS_LISTEN,

  /**
   * Our phone is ringing.
   */
  CS_RING,

  /**
   * We accepted an incoming phone call.
   */
  CS_ACCEPTED,

  /**
   * We are looking up some other participant.
   */
  CS_RESOLVING,

  /**
   * We are now ringing the other participant.
   */
  CS_RINGING,

  /**
   * The other party accepted our call and we are now connected.
   */
  CS_CONNECTED,

  /**
   * Internal error
   */
  CS_ERROR

};


/**
 * Phone handle
 */
static struct GNUNET_CONVERSATION_Phone *phone;

/**
 * Call handle
 */
static struct GNUNET_CONVERSATION_Call *call;

/**
 * Desired phone line.
 */
static unsigned int line;

/**
 * Task which handles the commands
 */
static GNUNET_SCHEDULER_TaskIdentifier handle_cmd_task;

/**
 * Our speaker.
 */
static struct GNUNET_SPEAKER_Handle *speaker;

/**
 * Our microphone.
 */
static struct GNUNET_MICROPHONE_Handle *mic;

/**
 * Our configuration.
 */
static struct GNUNET_CONFIGURATION_Handle *cfg;

/**
 * Our ego.
 */
static struct GNUNET_IDENTITY_Ego *caller_id;

/**
 * Handle to identity service.
 */
static struct GNUNET_IDENTITY_Handle *id;

/**
 * Name of our ego.
 */
static char *ego_name;

/**
 * Name of conversation partner (if any).
 */
static char *peer_name;

/**
 * File handle for stdin.
 */
static struct GNUNET_DISK_FileHandle *stdin_fh;

/**
 * Our current state.
 */
static enum ConversationState state;

/**
 * GNS address for this phone.
 */
static char *address;

/**
 * Be verbose.
 */
static int verbose;


/**
 * Function called with an event emitted by a phone.
 *
 * @param cls closure
 * @param code type of the event on the phone
 * @param ... additional information, depends on @a code
 */
static void
phone_event_handler (void *cls,
                     enum GNUNET_CONVERSATION_EventCode code,
                     ...)
{
  va_list va;
  
  va_start (va, code);
  switch (code)
  {
  case GNUNET_CONVERSATION_EC_RING:
    GNUNET_break (CS_LISTEN == state);
    GNUNET_free_non_null (peer_name);
    peer_name = GNUNET_strdup (va_arg (va, const char *));
    FPRINTF (stdout,
             _("Incoming call from `%s'.\nPlease /accept or /cancel the call.\n"),
             peer_name);
    state = CS_RING;
    break;
  case GNUNET_CONVERSATION_EC_RINGING:
    GNUNET_break (0);
    break;
  case GNUNET_CONVERSATION_EC_READY:
    GNUNET_break (0);
    break;
  case GNUNET_CONVERSATION_EC_GNS_FAIL:
    GNUNET_break (0);
    break;
  case GNUNET_CONVERSATION_EC_BUSY:
    GNUNET_break (0);
    break;
  case GNUNET_CONVERSATION_EC_TERMINATED:
    GNUNET_break ( (CS_RING == state) ||
                   (CS_ACCEPTED == state) );
    FPRINTF (stdout,
             _("Call terminated: %s\n"),
             va_arg (va, const char *));
    state = CS_LISTEN;
    break;
  }
  va_end (va);
}


/**
 * Start our phone.
 */
static void
start_phone ()
{
  struct GNUNET_NAMESTORE_RecordData rd;

  if (NULL == caller_id)
  {
    FPRINTF (stderr,
             _("Ego `%s' no longer available, phone is now down.\n"),
             ego_name);
    state = CS_LOOKUP_EGO;
    return;
  }
  phone = GNUNET_CONVERSATION_phone_create (cfg,
                                            caller_id,
                                            &phone_event_handler, NULL);
  /* FIXME: get record and print full GNS record info later here... */
  if (NULL == phone)
  {
    FPRINTF (stderr,
             "%s",
             _("Failed to setup phone (internal error)\n"));
    state = CS_ERROR;
  }
  else
  {
    GNUNET_CONVERSATION_phone_get_record (phone,
                                          &rd);
    GNUNET_free_non_null (address);
    address = GNUNET_NAMESTORE_value_to_string (rd.record_type,
                                                rd.data,
                                                rd.data_size);
    if (verbose)
      FPRINTF (stdout,
               _("Phone active on line %u\n"),
               (unsigned int) line);
    state = CS_LISTEN;
  }
}


/**
 * Function called with an event emitted by a phone.
 *
 * @param cls closure
 * @param code type of the event on the phone
 * @param ... additional information, depends on @a code
 */
static void
call_event_handler (void *cls,
                    enum GNUNET_CONVERSATION_EventCode code,
                    ...)
{
  va_list va;
  
  va_start (va, code);
  switch (code)
  {
  case GNUNET_CONVERSATION_EC_RING:
    GNUNET_break (0);
    break;
  case GNUNET_CONVERSATION_EC_RINGING:
    GNUNET_break (CS_RESOLVING == state);
    if (verbose)
      FPRINTF (stdout,
               "%s",
               _("Resolved address. Now ringing other party.\n"));
    state = CS_RINGING;
    break;
  case GNUNET_CONVERSATION_EC_READY:
    GNUNET_break (CS_RINGING == state);
    FPRINTF (stdout,
             _("Connection established to `%s': %s\n"),
             peer_name,
             va_arg (va, const char *));
    state = CS_CONNECTED;
    break;
  case GNUNET_CONVERSATION_EC_GNS_FAIL:
    GNUNET_break (CS_RESOLVING == state);
    FPRINTF (stdout,
             _("Failed to resolve `%s'\n"),
             ego_name);
    call = NULL;
    start_phone ();
    break;
  case GNUNET_CONVERSATION_EC_BUSY:
    GNUNET_break (CS_RINGING == state);
    FPRINTF (stdout,
             "%s",
             _("Line busy\n"));
    call = NULL;
    start_phone ();
    break;
  case GNUNET_CONVERSATION_EC_TERMINATED:
    GNUNET_break ( (CS_RINGING == state) ||
                   (CS_CONNECTED == state) );
    FPRINTF (stdout,
             _("Call terminated: %s\n"),
             va_arg (va, const char *));
    call = NULL;
    start_phone ();
    break;
  }
  va_end (va);
}


/**
 * Function declareation for executing a action
 *
 * @param arguments arguments given to the function
 */
typedef void (*ActionFunction) (const char *arguments);


/**
 * Structure which defines a command
 */
struct VoipCommand
{
  /**
   * Command the user needs to enter.
   */
  const char *command;
  
  /**
   * Function to call on command.
   */
  ActionFunction Action;

  /**
   * Help text for the command.
   */
  const char *helptext;
};


/**
 * Action function to print help for the command shell.
 *
 * @param args arguments given to the command
 */
static void
do_help (const char *args);


/**
 * Terminate the client
 *
 * @param args arguments given to the command
 */
static void
do_quit (const char *args)
{
  GNUNET_SCHEDULER_shutdown ();
}


/**
 * Handler for unknown command.
 *
 * @param msg arguments given to the command
 */
static void
do_unknown (const char *msg)
{
  FPRINTF (stderr, 
	   _("Unknown command `%s'\n"), 
	   msg);
}


/**
 * Initiating a new call
 *
 * @param arg arguments given to the command
 */
static void
do_call (const char *arg)
{
  if (NULL == caller_id)
  {
    FPRINTF (stderr,
             _("Ego `%s' not available\n"),
             ego_name);
    return;
  }
  switch (state)
  {
  case CS_LOOKUP_EGO: 
    FPRINTF (stderr,
             _("Ego `%s' not available\n"),
             ego_name);
    return;
  case CS_LISTEN:
    /* ok to call! */
    break;
  case CS_RING:
    FPRINTF (stdout,
             _("Hanging up on incoming phone call from `%s' to call `%s'.\n"),
             peer_name,
             arg);
    GNUNET_CONVERSATION_phone_hang_up (phone, NULL);
    break;
  case CS_ACCEPTED:
    FPRINTF (stderr,
             _("You are already in a conversation with `%s', refusing to call `%s'.\n"),
             peer_name,
             arg);
    return;
  case CS_RESOLVING:
  case CS_RINGING:
    FPRINTF (stderr,
             _("Aborting call to `%s'\n"),
             peer_name);
    GNUNET_CONVERSATION_call_stop (call, NULL);
    call = NULL;
    break;
  case CS_CONNECTED:
    FPRINTF (stderr,
             _("You are already in a conversation with `%s', refusing to call `%s'.\n"),
             peer_name,
             arg);
    return;
  case CS_ERROR:
    /* ok to call */
    break;
  }
  GNUNET_assert (NULL == call);
  if (NULL != phone)
  {
    GNUNET_CONVERSATION_phone_destroy (phone);
    phone = NULL;
  }
  GNUNET_free_non_null (peer_name);
  peer_name = GNUNET_strdup (arg);
  call = GNUNET_CONVERSATION_call_start (cfg,
                                         caller_id,
                                         arg,
                                         speaker,
                                         mic,
                                         &call_event_handler, NULL);
  state = CS_RESOLVING;
}


/**
 * Accepting an incoming call
 *
 * @param args arguments given to the command
 */
static void
do_accept (const char *args)
{
  switch (state)
  {
  case CS_LOOKUP_EGO:     
  case CS_LISTEN:
  case CS_ERROR:
    FPRINTF (stderr,
             _("There is no incoming call to be accepted!\n"));
    return;
  case CS_RING:
    /* this is the expected state */
    break;
  case CS_ACCEPTED:
    FPRINTF (stderr,
             _("You are already in a conversation with `%s'.\n"),
             peer_name);
    return;
  case CS_RESOLVING:
  case CS_RINGING:
    FPRINTF (stderr,
             _("You are trying to call `%s', cannot accept incoming calls right now.\n"),
             peer_name);
    return;
  case CS_CONNECTED:
    FPRINTF (stderr,
             _("You are already in a conversation with `%s'.\n"),
             peer_name);
    return;
  }
  GNUNET_assert (NULL != phone);
  GNUNET_CONVERSATION_phone_pick_up (phone, 
                                     args,
                                     speaker,
                                     mic);
  state = CS_ACCEPTED;
}


/**
 * Print address information for this phone.
 *
 * @param args arguments given to the command
 */
static void
do_address (const char *args)
{
  if (NULL == address)
  {
    FPRINTF (stdout,
             "%s",
             _("We currently do not have an address.\n"));
    return;
  }
  FPRINTF (stdout,
           "%s\n",
           address);
}


/**
 * Accepting an incoming call
 *
 * @param args arguments given to the command
 */
static void
do_status (const char *args)
{
  switch (state)
  {
  case CS_LOOKUP_EGO: 
    FPRINTF (stdout,
             _("We are currently trying to locate the private key for the ego `%s'.\n"),
             ego_name);
    break;
  case CS_LISTEN:
    FPRINTF (stdout,
             _("We are listening for incoming calls for ego `%s' on line %u.\n"),
             ego_name,
             line);
    break;
  case CS_RING:
    FPRINTF (stdout,
             _("The phone is rining. `%s' is trying to call us.\n"),
             peer_name);
    break;
  case CS_ACCEPTED:
  case CS_CONNECTED:
    FPRINTF (stdout,
             _("You are having a conversation with `%s'.\n"),
             peer_name);
    break;
  case CS_RESOLVING:
    FPRINTF (stdout,
             _("We are trying to find the network address to call `%s'.\n"),
             peer_name);
    break;
  case CS_RINGING:
    FPRINTF (stdout,
             _("We are calling `%s', his phone should be ringing.\n"),
             peer_name);
    break;
  case CS_ERROR:
    FPRINTF (stdout,
             _("We had an internal error setting up our phone line. You can still make calls.\n"));
    break;
  }
}


/**
 * Rejecting a call
 *
 * @param args arguments given to the command
 */
static void
do_reject (const char *args)
{
  switch (state)
  {
  case CS_LOOKUP_EGO: 
  case CS_LISTEN:
  case CS_ERROR:
    FPRINTF (stderr,
             "%s",
             _("There is no call that could be cancelled right now.\n"));
    return;
  case CS_RING:
  case CS_ACCEPTED:
  case CS_RESOLVING:
  case CS_RINGING:
  case CS_CONNECTED:
    /* expected state, do rejection logic */
    break;
  }
  if (NULL == call)
  {
    GNUNET_assert (NULL != phone);
    GNUNET_CONVERSATION_phone_hang_up (phone, 
                                       args);
    state = CS_LISTEN;
  }
  else
  {
    GNUNET_CONVERSATION_call_stop (call, args);
    call = NULL;
    start_phone ();
  }
}


/**
 * List of supported commands.
 */
static struct VoipCommand commands[] = {
  {"/address", &do_address, 
   gettext_noop ("Use `/address' to find out which address this phone should have in GNS")},
  {"/call", &do_call, 
   gettext_noop ("Use `/call USER.gnu' to call USER")},
  {"/accept", &do_accept,
   gettext_noop ("Use `/accept MESSAGE' to accept an incoming call")},
  {"/cancel", &do_reject,
   gettext_noop ("Use `/cancel MESSAGE' to reject or terminate a call")},
  {"/status", &do_status,
   gettext_noop ("Use `/status' to print status information")},
  {"/quit", &do_quit, 
   gettext_noop ("Use `/quit' to terminate gnunet-conversation")},
  {"/help", &do_help,
   gettext_noop ("Use `/help command' to get help for a specific command")},
  {"", &do_unknown, 
   NULL},
  {NULL, NULL, NULL},
};


/**
 * Action function to print help for the command shell.
 *
 * @param arguments arguments given to the command
 */
static void
do_help (const char *args)
{
  unsigned int i;
  
  i = 0; 
  while ( (NULL != args) &&
          (0 != strlen (args)) &&
          (commands[i].Action != &do_help))
  {
    if (0 ==
	strncasecmp (&args[1], &commands[i].command[1], strlen (args) - 1))
    {
      FPRINTF (stdout, 
	       "%s\n",
	       gettext (commands[i].helptext));
      return;
    }
    i++;
  }
  i = 0;
  FPRINTF (stdout, 
	   "%s", 
	   "Available commands:\n");
  while (commands[i].Action != &do_help)
  {
    FPRINTF (stdout, 
	     "%s\n", 
	     gettext (commands[i].command));
    i++;
  }
  FPRINTF (stdout,
	   "%s",
	   "\n");
  FPRINTF (stdout,
	   "%s\n",
	   gettext (commands[i].helptext));
}


/**
 * Task run during shutdown.
 *
 * @param cls NULL
 * @param tc unused
 */
static void
do_stop_task (void *cls,
	      const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  if (NULL != call)
  {
    GNUNET_CONVERSATION_call_stop (call, NULL);
    call = NULL;
  }
  if (NULL != phone)
  {
    GNUNET_CONVERSATION_phone_destroy (phone);
    phone = NULL;
  }
  if (GNUNET_SCHEDULER_NO_TASK != handle_cmd_task)
  {
    GNUNET_SCHEDULER_cancel (handle_cmd_task);
    handle_cmd_task = GNUNET_SCHEDULER_NO_TASK;
  } 
  if (NULL != id)
  {
    GNUNET_IDENTITY_disconnect (id);
    id = NULL;
  }
  GNUNET_SPEAKER_destroy (speaker);
  speaker = NULL;
  GNUNET_MICROPHONE_destroy (mic);
  mic = NULL;
  GNUNET_free (ego_name);
  ego_name = NULL;
  GNUNET_CONFIGURATION_destroy (cfg);
  cfg = NULL;
  GNUNET_free_non_null (peer_name);
  state = CS_ERROR;
}


/**
 * Task to handle commands from the terminal.
 *
 * @param cls NULL
 * @param tc scheduler context
 */
static void
handle_command (void *cls,
		const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  char message[MAX_MESSAGE_LENGTH + 1];
  const char *ptr;
  size_t i;

  handle_cmd_task =
    GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
                                    stdin_fh,
                                    &handle_command, NULL);
  /* read message from command line and handle it */
  memset (message, 0, MAX_MESSAGE_LENGTH + 1);
  if (NULL == fgets (message, MAX_MESSAGE_LENGTH, stdin))
    return;
  if (0 == strlen (message))
    return;
  if (message[strlen (message) - 1] == '\n')
    message[strlen (message) - 1] = '\0';
  if (0 == strlen (message))
    return;
  i = 0;
  while ((NULL != commands[i].command) &&
	 (0 != strncasecmp (commands[i].command, message,
                            strlen (commands[i].command))))
    i++;
  ptr = &message[strlen (commands[i].command)];
  while (isspace ((int) *ptr))
    ptr++;
  commands[i].Action (ptr);
}


/**
 * Function called by identity service with information about egos.
 *
 * @param cls NULL
 * @param ego ego handle
 * @param ctx unused
 * @param name name of the ego
 */
static void
identity_cb (void *cls,
             struct GNUNET_IDENTITY_Ego *ego,
             void **ctx,
             const char *name)
{
  if (NULL == name)
    return;
  if (ego == caller_id)
  {
    if (verbose)
      FPRINTF (stdout,
               _("Name of our ego changed to `%s'\n"),
               name);
    GNUNET_free (ego_name);
    ego_name = GNUNET_strdup (name);
    return;
  }
  if (0 != strcmp (name,
                   ego_name))
    return;
  if (NULL == ego)
  {    
    if (verbose)
      FPRINTF (stdout,
               _("Our ego `%s' was deleted!\n"),
               ego_name);
    caller_id = NULL;
    return;
  }
  caller_id = ego;
  GNUNET_CONFIGURATION_set_value_number (cfg,
                                         "CONVERSATION",
                                         "LINE",
                                         line);
  start_phone ();
}


/**
 * Main function that will be run by the scheduler.
 *
 * @param cls closure
 * @param args remaining command-line arguments
 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
 * @param c configuration
 */
static void
run (void *cls,
     char *const *args, 
     const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *c)
{
  cfg = GNUNET_CONFIGURATION_dup (c);
  speaker = GNUNET_SPEAKER_create_from_hardware (cfg);
  mic = GNUNET_MICROPHONE_create_from_hardware (cfg);
  if (NULL == ego_name)
  {
    FPRINTF (stderr,
             "%s",
             _("You must specify the NAME of an ego to use\n"));
    return;
  }
  id = GNUNET_IDENTITY_connect (cfg,
                                &identity_cb,
                                NULL);
  handle_cmd_task =
    GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_UI,
					&handle_command, NULL);
  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &do_stop_task,
				NULL);
}


/** 
 * The main function to conversation.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
    {'e', "ego", "NAME",
     gettext_noop ("sets the NAME of the ego to use for the phone (and name resolution)"),
     1, &GNUNET_GETOPT_set_string, &ego_name},
    {'p', "phone", "LINE",
      gettext_noop ("sets the LINE to use for the phone"),
     1, &GNUNET_GETOPT_set_uint, &line},
    GNUNET_GETOPT_OPTION_END
  };
  int flags;
  int ret;

  flags = fcntl (0, F_GETFL, 0);
  flags |= O_NONBLOCK;
  fcntl (0, F_SETFL, flags);
  stdin_fh = GNUNET_DISK_get_handle_from_int_fd (0);
  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
    return 2;
  ret = GNUNET_PROGRAM_run (argc, argv,
                            "gnunet-conversation",
			    gettext_noop ("Enables having a conversation with other GNUnet users."),
			    options, &run, NULL);
  GNUNET_free ((void *) argv);
  return (GNUNET_OK == ret) ? 0 : 1;
}

/* end of gnunet-conversation.c */