Searched +full:- +full:- +full:without +full:- +full:libssh2 (Results 1 – 25 of 37) sorted by relevance
12
| /external/curl/ |
| D | .azure-pipelines.yml | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 32 - 'master' 33 - '*/ci' 36 - '.circleci/*' 37 - '.cirrus.yml' 38 - '.github/*' 39 - '.github/workflows/*' 40 - 'appveyor.*' 41 - 'packages/*' [all …]
|
| D | .cirrus.yml | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 24 # https://cirrus-ci.com/github/curl/curl 27 # https://cirrus-ci.org/guide/writing-tasks/ 32 '.azure-pipelines.yml', 46 - name: FreeBSD 14.0 48 image_family: freebsd-14-0 53 MAKEFLAGS: -j 3 56 - pkg update -f 57 …- pkg install -y autoconf automake libtool pkgconf brotli openldap26-client heimdal libpsl libssh2… [all …]
|
| D | configure.ac | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 29 AC_INIT([curl], [-], [a suitable curl mailing list: https://curl.se/mail/]) 67 if test -z "$SED"; then 71 if test -z "$SED" || test "$SED" = "not_found"; then 72 AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.]) 79 if test -z "$GREP"; then 83 if test -z "$GREP" || test "$GREP" = "not_found"; then 84 AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.]) 89 dnl 'grep -E' is mandatory for configure process and libtool. [all …]
|
| D | RELEASE-NOTES | 22 o appveyor: drop unnecessary `--clean-first` cmake option [197] 23 o appveyor: guard against crash-build with VS2008 [193] 24 o appveyor: make gcc 6 mingw64 job build-only [152] 25 o asyn-thread: fix curl_global_cleanup crash in Windows [161] 26 o asyn-thread: fix Curl_thread_create result check [162] 33 o BUG-BOUNTY.md: clarify the third party situation [210] 35 o build: remove MacOSX-Framework script [60] 37 o cf-https-connect: use timeouts as unsigned ints [143] 38 o cf-socket: don't try getting local IP without socket [188] 39 o cf-socket: remove references to l_ip, l_port [9] [all …]
|
| D | CMakeLists.txt | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 29 # sub-projects in a larger build using `FetchContent`. To support 32 # https://cmake.org/cmake/help/latest/module/FetchContent.html#integrating-with-find-package 61 string(REGEX MATCH "#define LIBCURL_VERSION_NUM 0x[0-9a-fA-F]+" 66 # Setup package meta-data 71 # SET(PACKAGE_VERSION "-") 72 # SET(PACKAGE_STRING "curl-") 91 option(ENABLE_ARES "Set to ON to enable c-ares support" OFF) 99 add_definitions(-D_WIN32_WINNT=${CURL_TARGET_WINDOWS_VERSION}) [all …]
|
| /external/curl/CMake/ |
| D | FindLibSSH2.cmake | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 24 # - Try to find the libssh2 library 27 # LIBSSH2_FOUND - system has the libssh2 library 28 # LIBSSH2_INCLUDE_DIR - the libssh2 include directory 29 # LIBSSH2_LIBRARY - the libssh2 library name 31 find_path(LIBSSH2_INCLUDE_DIR libssh2.h) 33 find_library(LIBSSH2_LIBRARY NAMES ssh2 libssh2) 36 …file(STRINGS "${LIBSSH2_INCLUDE_DIR}/libssh2.h" libssh2_version_str REGEX "^#define[\t ]+LIBSSH2_V… 41 find_package_handle_standard_args(LibSSH2
|
| /external/curl/.github/workflows/ |
| D | macos.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.azure-pipelines.yml' 15 - '.circleci/**' 16 - '.cirrus.yml' 17 - 'appveyor.*' 18 - 'packages/**' [all …]
|
| D | linux.yml | 3 # SPDX-License-Identifier: curl 10 - master 11 - '*/ci' 12 paths-ignore: 13 - '**/*.md' 14 - '.azure-pipelines.yml' 15 - '.circleci/**' 16 - '.cirrus.yml' 17 - 'appveyor.*' 18 - 'packages/**' [all …]
|
| /external/curl/packages/OS400/ |
| D | config400.default | 19 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 22 # SPDX-License-Identifier: curl 50 # Define LIBSSH2 availability and locations. 53 setenv LIBSSH2_INCLUDE '/libssh2/include' # LIBSSH2 include IFS directory. 54 setenv LIBSSH2_LIB 'LIBSSH2' # LIBSSH2 library. 55 setenv LIBSSH2_BNDDIR 'LIBSSH2_A' # LIBSSH2 binding directory.
|
| D | README.OS400 | 14 mechanism would have lead in a localized binary library - not portable across 27 To support all the different variants of EBCDIC, non-standard wrapper 42 Non-standard EBCDIC wrapper prototypes are defined in an additional header 43 file: ccsidcurl.h. These should be self-explanatory to an OS/400-aware 147 CURLOPT_POSTFIELDSIZE != -1, the data size is adjusted according to the 194 non-ccsid version and return a string encoded in the additional ccsid 200 Although the prototypes are self-explanatory, the returned string pointer 201 should be released with curl_free() after use, as opposite to the non-ccsid 212 _ curl_easy_header_ccsid() works as its non-CCSID counterpart but requires an 226 config-os400.h has been coded manually and the compilation scripts are [all …]
|
| /external/oss-fuzz/projects/libssh2/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 FROM gcr.io/oss-fuzz-base/base-builder 19 RUN git clone --depth 1 https://github.com/libssh2/libssh2.git /src/libssh2 21 WORKDIR $SRC/libssh2
|
| /external/curl/.circleci/ |
| D | config.yml | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 28 # See https://circleci.com/docs/configuration-reference/#macos-execution-environment 30 …ion of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference 36 - run: 38 autoreconf -fi 39 … ./configure --enable-warnings --enable-werror --with-openssl || { tail -1000 config.log; false; } 41 configure-openssl-no-verbose: 43 - run: 45 autoreconf -fi [all …]
|
| /external/curl/packages/vms/ |
| D | generate_config_vms_h_curl.com | 8 $! know how to do everything, so there is also a [-.lib]config-vms.h file 14 $! and the [.lib]config-vms.h file do two different tasks and that the 20 $! purpose with or without fee is hereby granted, provided that the above 31 $! SPDX-License-Identifier: ISC 59 $libssh2 = 0 65 $!--------------------------------------- 71 $!---------------------------------------- 82 $!------------------------------------ 92 $!---------------------------------------------------------- 100 $!---------------------------------------------------------------- [all …]
|
| /external/curl/lib/vssh/ |
| D | libssh2.c | 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 * SPDX-License-Identifier: curl 33 #include <libssh2.h> 204 struct connectdata *conn = data->conn; in kbd_callback() 205 responses[0].text = strdup(conn->passwd); in kbd_callback() 207 responses[0].text == NULL ? 0 : curlx_uztoui(strlen(conn->passwd)); in kbd_callback() 247 /* Ordered by order of appearance in libssh2.h */ in libssh2_session_error_to_CURLE() 310 struct connectdata *conn = data->conn; in state() 311 struct ssh_conn *sshc = &conn->proto.sshc; in state() 380 if(sshc->state != nowstate) { in state() [all …]
|
| D | ssh.h | 20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23 * SPDX-License-Identifier: curl 30 #include <libssh2.h> 44 SSH_NO_STATE = -1, /* Used for "nextState" so say there is none */ 47 SSH_INIT, /* First state in SSH-CONNECT */ 65 SSH_SFTP_REALPATH, /* Last state in SSH-CONNECT */ 67 SSH_SFTP_QUOTE_INIT, /* First state in SFTP-DO */ 68 SSH_SFTP_POSTQUOTE_INIT, /* (Possibly) First state in SFTP-DONE */ 92 SSH_SFTP_DOWNLOAD_STAT, /* Last state in SFTP-DO */ 93 SSH_SFTP_CLOSE, /* Last state in SFTP-DONE */ [all …]
|
| D | wolfssh.c | 18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 * SPDX-License-Identifier: curl 143 struct connectdata *conn = data->conn; in state() 144 struct ssh_conn *sshc = &conn->proto.sshc; in state() 213 if(sshc->state != nowstate) { in state() 215 (void *)sshc, names[sshc->state], names[nowstate]); in state() 219 sshc->state = nowstate; in state() 252 struct connectdata *conn = data->conn; in wsftp_send() 253 struct ssh_conn *sshc = &conn->proto.sshc; in wsftp_send() 258 offset[0] = (word32)sshc->offset&0xFFFFFFFF; in wsftp_send() [all …]
|
| /external/curl/docs/ |
| D | FEATURES.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 7 # Features -- what curl can do 11 - config file support 12 - multiple URLs in a single command line 13 - range "globbing" support: [0-13], {one,two,three} 14 - multiple file upload on a single command line 15 - custom maximum transfer rate 16 - redirect stderr [all …]
|
| D | TODO | 27 1.10 auto-detect proxy 30 1.13 c-ares and CURLOPT_OPENSOCKETFUNCTION 48 2. libcurl - multi interface 49 2.1 More non-blocking 51 2.3 Non-blocking curl_multi_remove_handle() 53 2.5 Edge-triggered sockets should work 60 3.2 Provide cmake config-file 69 4.7 STAT for LIST without data connection 74 5.2 Obey Retry-After in redirects 78 5.6 alt-svc should fallback if alt-svc does not work [all …]
|
| D | BUGS.md | 1 <!-- 4 SPDX-License-Identifier: curl 5 --> 56 - your operating system's name and version number 58 - what version of curl you are using (`curl -V` is fine) 60 - versions of the used libraries that libcurl is built to use 62 - what URL you were working with (if possible), at least which protocol 71 debug dump with your bug report. The output you get by using the `-v` or 72 `--trace` options. 88 version of all relevant sub-components like for example the SSL library [all …]
|
| /external/curl/winbuild/ |
| D | MakefileBuild.vc | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 43 # This command macro is not set by default: https://msdn.microsoft.com/en-us/library/ms933742.aspx 61 # - optimizing options like /opt:ref raises warnings (at least in Visual Studio 2015) 62 # - all (including Windows) dependencies are aggregated (as static parts) 63 # - link.exe /lib is not documented (anymore) at MSDN 290 SSH2_INC_DIR= $(DEVEL_INCLUDE)/libssh2 294 SSH2_LIBS = libssh2.lib 298 # libssh2 NMakefile on Windows at default creates a static library without _a suffix 299 !IF EXISTS("$(SSH2_LIB_DIR)\libssh2.lib") [all …]
|
| /external/curl/lib/ |
| D | Makefile.mk | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 25 # Makefile to build curl parts with GCC-like toolchains and optional features. 27 # Usage: make -f Makefile.mk CFG=-feat1[-feat2][-feat3][...] 28 # Example: make -f Makefile.mk CFG=-zlib-ssl-libssh2-ipv6 54 TRIPLET ?= $(shell $(CC) -dumpmachine) 59 # Cross-tools: https://github.com/andrewwutw/build-djgpp 63 # Cross-tools: https://github.com/bebbo/amiga-gcc 67 CPPFLAGS += -I. -I$(PROOT)/include 77 ifneq ($(findstring -debug,$(CFG)),) [all …]
|
| D | Makefile.inc | 18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 21 # SPDX-License-Identifier: curl 86 vquic/vquic-tls.c 95 vquic/vquic-tls.h 99 vssh/libssh2.c \ 108 asyn-ares.c \ 109 asyn-thread.c \ 113 c-hyper.c \ 114 cf-h1-proxy.c \ 115 cf-h2-proxy.c \ [all …]
|
| D | sha256.c | 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 22 * SPDX-License-Identifier: curl 63 /* When OpenSSL or wolfSSL is available we use their SHA256-functions. */ 89 /* Please keep the SSL backend-specific #if branches in this order: 110 ctx->openssl_ctx = EVP_MD_CTX_create(); in my_sha256_init() 111 if(!ctx->openssl_ctx) in my_sha256_init() 114 if(!EVP_DigestInit_ex(ctx->openssl_ctx, EVP_sha256(), NULL)) { in my_sha256_init() 115 EVP_MD_CTX_destroy(ctx->openssl_ctx); in my_sha256_init() 125 EVP_DigestUpdate(ctx->openssl_ctx, data, length); in my_sha256_update() 130 EVP_DigestFinal_ex(ctx->openssl_ctx, digest, NULL); in my_sha256_final() [all …]
|
| /external/curl/scripts/ |
| D | ciconfig.pl | 19 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 22 # SPDX-License-Identifier: curl 27 # check for and use this feature without the configure flag 29 # --enable- 32 'fast-install' => 1, 33 'silent-rules' => 1, 52 'libcurl-option' => 1, 55 'openssl-auto-load-config' => 1, 56 'versioned-symbols' => 1, 57 'symbol-hiding' => 1, [all …]
|
| /external/curl/tests/libtest/ |
| D | test613.pl | 19 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 22 # SPDX-License-Identifier: curl 63 print FILE "Read-only test file to support curl test suite\n"; 84 if ($logfile && -s $logfile) { 90 # enough version of libssh2) so this script must also 93 # -r--r--r-- 12 ausername grp 47 Dec 31 2000 rofile.txt 94 # -r--r--r-- 1 1234 4321 47 Dec 31 2000 rofile.txt 97 # -r-?r-?r-? 12 U U 47 Dec 31 2000 rofile.txt 112 } elsif ($1 eq "-") {
|
12