Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startFTPServer (0.11 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

                    .singleton("ftpClient", FtpClient.class);
            ftpClient = container.getComponent("ftpClient");
        }
    
        public FtpServer startFtpServer(int port, String username, String password) throws FtpException {
            FtpServerFactory factory = new FtpServerFactory();
            ListenerFactory lisnerFactory = new ListenerFactory();
            lisnerFactory.setPort(port);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. cmd/server-main.go

    				}()
    			})
    		}
    
    		// if we see FTP args, start FTP if possible
    		if len(globalServerCtxt.FTP) > 0 {
    			bootstrapTrace("go startFTPServer", func() {
    				go startFTPServer(globalServerCtxt.FTP)
    			})
    		}
    
    		// If we see SFTP args, start SFTP if possible
    		if len(globalServerCtxt.SFTP) > 0 {
    			bootstrapTrace("go startSFTPServer", func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top