Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    raaf92a9 r2c2df7d  
    6363        conf->ping_interval = 180;
    6464        conf->ping_timeout = 300;
    65         conf->user = NULL;
     65        conf->max_filetransfer_size = G_MAXUINT;
    6666        proxytype = 0;
    6767       
     
    7777        }
    7878       
    79         while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:hR:u:" ) ) >= 0 )
     79        while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:hR:" ) ) >= 0 )
    8080        /*     ^^^^ Just to make sure we skip this step from the REHASH handler. */
    8181        {
     
    133133                                "  -D  Daemon mode. (Still EXPERIMENTAL!)\n"
    134134                                "  -F  Forking daemon. (one process per client)\n"
    135                                 "  -u  Run daemon as specified user.\n"
    136135                                "  -P  Specify PID-file (not for inetd mode)\n"
    137136                                "  -i  Specify the interface (by IP address) to listen on.\n"
     
    153152                        ipc_master_set_statefile( optarg );
    154153                }
    155                 else if( opt == 'u' )
    156                 {
    157                         g_free( conf->user );
    158                         conf->user = g_strdup( optarg );
    159                 }
    160154        }
    161155       
     
    199193                        else if( g_strcasecmp( ini->key, "daemoninterface" ) == 0 )
    200194                        {
    201                                 g_free( conf->iface );
    202195                                conf->iface = g_strdup( ini->value );
    203196                        }
    204197                        else if( g_strcasecmp( ini->key, "daemonport" ) == 0 )
    205198                        {
    206                                 g_free( conf->port );
    207199                                conf->port = g_strdup( ini->value );
    208200                        }
     
    218210                        else if( g_strcasecmp( ini->key, "authpassword" ) == 0 )
    219211                        {
    220                                 g_free( conf->auth_pass );
    221212                                conf->auth_pass = g_strdup( ini->value );
    222213                        }
    223214                        else if( g_strcasecmp( ini->key, "operpassword" ) == 0 )
    224215                        {
    225                                 g_free( conf->oper_pass );
    226216                                conf->oper_pass = g_strdup( ini->value );
    227217                        }
    228218                        else if( g_strcasecmp( ini->key, "hostname" ) == 0 )
    229219                        {
    230                                 g_free( conf->hostname );
    231220                                conf->hostname = g_strdup( ini->value );
    232221                        }
     
    293282                                g_free( url );
    294283                        }
    295                         else if( g_strcasecmp( ini->key, "user" ) == 0 )
    296                         {
    297                                 g_free( conf->user );
    298                                 conf->user = g_strdup( ini->value );
    299                         }
    300284                        else
    301285                        {
Note: See TracChangeset for help on using the changeset viewer.