Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:allow_legacy
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mbedtls/programs/ssl/
H
A
D
ssl_client2.c
415
"
allow_legacy
=%%d default: (library default: no)\n" \
500
int
allow_legacy
; /* allow legacy renegotiation */
member
949
opt.
allow_legacy
= DFL_ALLOW_LEGACY;
in main()
1173
} else if (strcmp(p, "
allow_legacy
") == 0) {
in main()
1176
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE;
in main()
1179
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
in main()
1182
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION;
in main()
1943
if (opt.
allow_legacy
!= DFL_ALLOW_LEGACY) {
in main()
1944
mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.
allow_legacy
);
in main()
H
A
D
ssl_server2.c
543
"
allow_legacy
=%%d default: (library default: no)\n" \
647
int
allow_legacy
; /* allow legacy renegotiation */
member
1725
opt.
allow_legacy
= DFL_ALLOW_LEGACY;
in main()
2005
} else if (strcmp(p, "
allow_legacy
") == 0) {
in main()
2008
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE;
in main()
2011
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION;
in main()
2014
opt.
allow_legacy
= MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION;
in main()
3044
if (opt.
allow_legacy
!= DFL_ALLOW_LEGACY) {
in main()
3045
mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.
allow_legacy
);
in main()
/third_party/mbedtls/include/mbedtls/
H
A
D
ssl.h
4545
* \param
allow_legacy
Prevent or allow (SSL_NO_LEGACY_RENEGOTIATION,
4549
void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int
allow_legacy
);
/third_party/mbedtls/library/
H
A
D
ssl_tls.c
2977
void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int
allow_legacy
)
in mbedtls_ssl_conf_legacy_renegotiation()
argument
2979
conf->allow_legacy_renegotiation =
allow_legacy
;
in mbedtls_ssl_conf_legacy_renegotiation()
Completed in 29 milliseconds