Package freenet.clients.fcp

Examples of freenet.clients.fcp.PersistentRequestRoot


    });

    this.persistentTempDir = node.setupProgramDir(installConfig, "persistentTempDir", node.userDir().file("persistent-temp").toString(),
      "NodeClientCore.persistentTempDir", "NodeClientCore.persistentTempDirLong", nodeConfig);
   
    fcpPersistentRoot = new PersistentRequestRoot();
    try {
        this.persistentTempBucketFactory = new PersistentTempBucketFactory(persistentTempDir.dir(),
                "freenet-temp-", node.random, node.fastWeakRandom, nodeConfig.getBoolean("encryptPersistentTempBuckets"));
        this.persistentFilenameGenerator = persistentTempBucketFactory.fg;
    } catch (IOException e) {
View Full Code Here

TOP

Related Classes of freenet.clients.fcp.PersistentRequestRoot

Copyright © 2018 www.massapicom. 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.