mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 08:57:12 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
8
third_party/java/jsch/BUILD
vendored
Normal file
8
third_party/java/jsch/BUILD
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
licenses(["notice"]) # BSD
|
||||
|
||||
java_library(
|
||||
name = "jsch",
|
||||
exports = ["//third_party/java/jsch/v0_1_44_google"],
|
||||
)
|
15
third_party/java/jsch/v0_1_44_google/BUILD
vendored
Normal file
15
third_party/java/jsch/v0_1_44_google/BUILD
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
package_group(
|
||||
name = "specific_version",
|
||||
packages = ["//third_party/java/jsch"],
|
||||
)
|
||||
|
||||
package(default_visibility = [":specific_version"])
|
||||
|
||||
licenses(["notice"]) # BSD
|
||||
|
||||
java_import(
|
||||
name = "v0_1_44_google",
|
||||
jars = ["jsch-0.1.44_google.jar"],
|
||||
srcjar = "jsch-0.1.44_google-src.jar",
|
||||
deps = ["//third_party/java/jzlib"],
|
||||
)
|
30
third_party/java/jsch/v0_1_44_google/LICENSE
vendored
Normal file
30
third_party/java/jsch/v0_1_44_google/LICENSE
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
JSch 0.0.* was released under the GNU LGPL license. Later, we have switched
|
||||
over to a BSD-style license.
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
Copyright (c) 2002-2010 Atsuhiko Yamanaka, JCraft,Inc.
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3. The names of the authors may not be used to endorse or promote products
|
||||
derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
|
||||
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
|
||||
INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
||||
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
||||
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
63
third_party/java/jsch/v0_1_44_google/README.google
vendored
Normal file
63
third_party/java/jsch/v0_1_44_google/README.google
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
Project URL: http://www.jcraft.com/jsch
|
||||
URL: http://downloads.sourceforge.net/project/jsch/jsch/0.1.44/jsch-0.1.44.zip?use_mirror=cdnetworks-us-1
|
||||
Version: 0.1.44
|
||||
License: BSD
|
||||
License File: LICENSE
|
||||
|
||||
Description:
|
||||
JSCH is a library for making SSH and SFTP connections from Java.
|
||||
|
||||
Local Modifications:
|
||||
Added three new features and one backport. Default behavior is preserved if
|
||||
they aren't used.
|
||||
|
||||
* Define global ThreadFactory instance. This allows the library to be used on
|
||||
App Engine, which doesn't allow apps to call `new Thread()`. To do this, you
|
||||
must override `JSch.threadFactory` with something from GAE's ThreadManager.
|
||||
Another global is also provided to disable calls to `Thread#setName` which
|
||||
always crash on GAE, regardless of ThreadFactory.
|
||||
|
||||
Files edited:
|
||||
|
||||
* JSch.java - Defined new `threadFactory` and `useThreadNames` fields.
|
||||
* Util.java - Updated thread creation code.
|
||||
* ChannelDirectTCPIP.java - Updated thread creation code.
|
||||
* ChannelSubsystem.java - Updated thread creation code.
|
||||
* ChannelShell.java - Updated thread creation code.
|
||||
* Session.java - Updated thread creation code.
|
||||
* ChannelForwardedTCPIP.java - Updated thread creation code.
|
||||
* ChannelExec.java - Updated thread creation code.
|
||||
|
||||
* Multiple pending requests with SFTP. Disabled by default. Call
|
||||
SftpChannel.setMaxPendingRequests(n) with n > 1 to enable (64 is a reasonable
|
||||
value). Can provide speed improvements of 10-20x if Periscope is disabled,
|
||||
and approximately 7x if Periscope is enabled and write flushing is disabled.
|
||||
|
||||
Files edited:
|
||||
|
||||
* ChannelSftp.java - Added alternate methods (fastGet, fastRead) that use
|
||||
new algorithm. If feature is enabled, the local window
|
||||
size will be set to Integer.MAX_VALUE, since flow
|
||||
control is already handled by SFTP, and some servers
|
||||
don't work well with smaller windows.
|
||||
|
||||
* Disable flushing of writes. Flushing is enabled by default. Call
|
||||
Session.setFlushingEnabled(false) before connecting to disable. Due to
|
||||
Periscope latency, flushing must be disabled to take advantage of multiple
|
||||
pending requests.
|
||||
|
||||
Files edited:
|
||||
|
||||
* Session.java - Added simple getter/setter for flushingEnabled boolean.
|
||||
* IO.java - Added optional flushingEnabled constructor arg. Disabled
|
||||
flushing when flushingEnabled is false.
|
||||
|
||||
* Added support for diffie-hellman-group14-sha1 key exchange algorithm to
|
||||
maintain connections to servers using upgraded OpenSSL.
|
||||
|
||||
Files edited:
|
||||
|
||||
* JSch.java - Added diffie-hellman-group14-sha1 to kex config.
|
||||
* DHG14.java - Added, patched from version 0.1.46.
|
||||
* jce/DH.java - Modified to support DH groups >1024 bits by ignoring
|
||||
JDK<8 exception and testing length of keys.
|
BIN
third_party/java/jsch/v0_1_44_google/jsch-0.1.44_google-src.jar
vendored
Normal file
BIN
third_party/java/jsch/v0_1_44_google/jsch-0.1.44_google-src.jar
vendored
Normal file
Binary file not shown.
BIN
third_party/java/jsch/v0_1_44_google/jsch-0.1.44_google.jar
vendored
Normal file
BIN
third_party/java/jsch/v0_1_44_google/jsch-0.1.44_google.jar
vendored
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue