Examples of finishedInitialization()


Examples of freenet.config.SubConfig.finishedInitialization()

      cb5.server = fcp;
      cb6.server = fcp;
      cb7.server = fcp;
    }

    fcpConfig.finishedInitialization();
    return fcp;
  }

  public boolean neverDropAMessage() {
    return neverDropAMessage;
View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

        new TextModeClientInterface(node, core, client, core.getDownloadsDir(), System.in, System.out);
      node.executor.execute(directTMCI, "Direct text mode interface");
      core.setDirectTMCI(directTMCI);
    }

    TMCIConfig.finishedInitialization();

    return server; // caller must call start()
  }

View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

    sskInsertStarterBulk.setScheduler(sskPutSchedulerBulk);
    sskInsertStarterRT.setScheduler(sskPutSchedulerRT);
   
    registerSchedulerConfig(schedulerConfig, "SSKinserter", sskPutSchedulerBulk, sskPutSchedulerRT, true, true);
   
    schedulerConfig.finishedInitialization();
  }
 
  private void registerSchedulerConfig(SubConfig schedulerConfig,
      String name, ClientRequestScheduler csBulk,
      ClientRequestScheduler csRT, boolean forSSKs, boolean forInserts) throws InvalidConfigValueException {
View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

    } else {
      // Call all the callbacks so that the config is consistent with the threat level.
      setThreatLevel(physLevel);
    }
   
    myConfig.finishedInitialization();
  }
 
  public synchronized void addNetworkThreatLevelListener(SecurityLevelListener<NETWORK_THREAT_LEVEL> listener) {
    networkThreatLevelCallback.addListener(listener);
  }
View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

    // FProxy config needs to be here too
    SubConfig fproxyConfig = new SubConfig("fproxy", config);
    try {
      toadlets = new SimpleToadletServer(fproxyConfig, new ArrayBucketFactory(), executor, this);
      fproxyConfig.finishedInitialization();
      toadlets.start();
    } catch (IOException e4) {
      Logger.error(this, "Could not start web interface: "+e4, e4);
      System.err.println("Could not start web interface: "+e4);
      e4.printStackTrace();
View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

    acceptSeedConnections = opennetConfig.getBoolean("acceptSeedConnections");

    if(acceptSeedConnections && opennet != null)
      opennet.crypto.socket.getAddressTracker().setHugeTracker();

    opennetConfig.finishedInitialization();

    nodeConfig.register("passOpennetPeersThroughDarknet", true, sortOrder++, true, false, "Node.passOpennetPeersThroughDarknet", "Node.passOpennetPeersThroughDarknetLong",
        new BooleanCallback() {

          @Override
View Full Code Here

Examples of freenet.config.SubConfig.finishedInitialization()

        });

    updateInstallers = updaterConfig.getBoolean("updateInstallers");

    updaterConfig.finishedInitialization();

    this.revocationChecker = new RevocationChecker(this, new File(
        node.clientCore.getPersistentTempDir(), "revocation-key.fblob"));

    this.legacyUOM = new LegacyUpdateOverMandatoryManager(this);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.