/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to plugins.d/mandosclient.c

  • Committer: Teddy Hogeborn
  • Date: 2008-07-21 02:35:05 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080721023505-x7pjntkgur2h5jkg
* plugins.d/mandosclient.c (start_mandos_communcation): Renamed to
                                          "start_mandos_communication"

Show diffs side-by-side

added added

removed removed

Lines of Context:
311
311
 
312
312
void empty_log(AvahiLogLevel level, const char *txt){}
313
313
 
314
 
int start_mandos_communcation(char *ip, uint16_t port){
 
314
int start_mandos_communication(char *ip, uint16_t port){
315
315
  int ret, tcp_sd;
316
316
  struct sockaddr_in6 to;
317
317
  encrypted_session es;
494
494
            if(debug){
495
495
              fprintf(stderr, "Mandos server found at %s on port %d\n", ip, port);
496
496
            }
497
 
            int ret = start_mandos_communcation(ip, port);
 
497
            int ret = start_mandos_communication(ip, port);
498
498
            if (ret == 0){
499
499
              exit(EXIT_SUCCESS);
500
500
            } else {