Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
c790ee64
Commit
c790ee64
authored
Oct 15, 2021
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
src: Prefer #ifdef for a single condition
parent
9fb05d5e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
15 deletions
+15
-15
src/shrpx_config.cc
src/shrpx_config.cc
+1
-1
src/shrpx_connection.cc
src/shrpx_connection.cc
+6
-6
src/shrpx_log.cc
src/shrpx_log.cc
+1
-1
src/shrpx_tls.cc
src/shrpx_tls.cc
+1
-1
src/ssl_compat.h
src/ssl_compat.h
+3
-3
src/util.cc
src/util.cc
+3
-3
No files found.
src/shrpx_config.cc
View file @
c790ee64
...
...
@@ -304,7 +304,7 @@ read_quic_secret_file(const StringRef &path) {
FILE
*
open_file_for_write
(
const
char
*
filename
)
{
std
::
array
<
char
,
STRERROR_BUFSIZE
>
errbuf
;
#if
defined
O_CLOEXEC
#if
def
O_CLOEXEC
auto
fd
=
open
(
filename
,
O_WRONLY
|
O_CLOEXEC
|
O_CREAT
|
O_TRUNC
,
S_IRUSR
|
S_IWUSR
);
#else
...
...
src/shrpx_connection.cc
View file @
c790ee64
...
...
@@ -503,9 +503,9 @@ int Connection::tls_handshake() {
// routine. We have to check HTTP/2 requirement if HTTP/2 was
// negotiated before sending finished message to the peer.
if
((
rv
!=
1
#if
defined(OPENSSL_IS_BORINGSSL)
#if
def OPENSSL_IS_BORINGSSL
||
SSL_in_init
(
tls
.
ssl
)
#endif //
defined(OPENSSL_IS_BORINGSSL)
#endif //
OPENSSL_IS_BORINGSSL
)
&&
tls
.
wbuf
.
rleft
())
{
// First write indicates that resumption stuff has done.
...
...
@@ -543,7 +543,7 @@ int Connection::tls_handshake() {
return
SHRPX_ERR_INPROGRESS
;
}
#if
defined(OPENSSL_IS_BORINGSSL)
#if
def OPENSSL_IS_BORINGSSL
if
(
!
tlsconf
.
no_postpone_early_data
&&
SSL_in_early_data
(
tls
.
ssl
)
&&
SSL_in_init
(
tls
.
ssl
))
{
auto
nread
=
SSL_read
(
tls
.
ssl
,
buf
.
data
(),
buf
.
size
());
...
...
@@ -575,7 +575,7 @@ int Connection::tls_handshake() {
return
SHRPX_ERR_INPROGRESS
;
}
}
#endif //
defined(OPENSSL_IS_BORINGSSL)
#endif //
OPENSSL_IS_BORINGSSL
// Handshake was done
...
...
@@ -613,7 +613,7 @@ int Connection::write_tls_pending_handshake() {
tls
.
wbuf
.
drain
(
nwrite
);
}
#if
defined(OPENSSL_IS_BORINGSSL)
#if
def OPENSSL_IS_BORINGSSL
if
(
!
SSL_in_init
(
tls
.
ssl
))
{
// This will send a session ticket.
auto
nwrite
=
SSL_write
(
tls
.
ssl
,
""
,
0
);
...
...
@@ -641,7 +641,7 @@ int Connection::write_tls_pending_handshake() {
}
}
}
#endif //
defined(OPENSSL_IS_BORINGSSL)
#endif //
OPENSSL_IS_BORINGSSL
// We have to start read watcher, since later stage of code expects
// this.
...
...
src/shrpx_log.cc
View file @
c790ee64
...
...
@@ -964,7 +964,7 @@ int open_log_file(const char *path) {
strcmp
(
path
,
"/proc/self/fd/2"
)
==
0
)
{
return
STDERR_COPY
;
}
#if
defined
O_CLOEXEC
#if
def
O_CLOEXEC
auto
fd
=
open
(
path
,
O_WRONLY
|
O_APPEND
|
O_CREAT
|
O_CLOEXEC
,
S_IRUSR
|
S_IWUSR
|
S_IRGRP
);
...
...
src/shrpx_tls.cc
View file @
c790ee64
...
...
@@ -2648,7 +2648,7 @@ int time_t_from_asn1_time(time_t &t, const ASN1_TIME *at) {
return
-
1
;
}
# if
defined(OPENSSL_IS_BORINGSSL)
# if
def OPENSSL_IS_BORINGSSL
char
*
s
;
# else
unsigned
char
*
s
;
...
...
src/ssl_compat.h
View file @
c790ee64
...
...
@@ -26,20 +26,20 @@
# include <openssl/opensslv.h>
# if
defined(LIBRESSL_VERSION_NUMBER)
# if
def LIBRESSL_VERSION_NUMBER
# define OPENSSL_1_1_API 0
# define OPENSSL_1_1_1_API 0
# define OPENSSL_3_0_0_API 0
# define LIBRESSL_IN_USE 1
# define LIBRESSL_LEGACY_API (LIBRESSL_VERSION_NUMBER < 0x20700000L)
# define LIBRESSL_2_7_API (LIBRESSL_VERSION_NUMBER >= 0x20700000L)
# else // !
defined(LIBRESSL_VERSION_NUMBER)
# else // !
LIBRESSL_VERSION_NUMBER
# define OPENSSL_1_1_API (OPENSSL_VERSION_NUMBER >= 0x1010000fL)
# define OPENSSL_1_1_1_API (OPENSSL_VERSION_NUMBER >= 0x10101000L)
# define OPENSSL_3_0_0_API (OPENSSL_VERSION_NUMBER >= 0x30000000L)
# define LIBRESSL_IN_USE 0
# define LIBRESSL_LEGACY_API 0
# define LIBRESSL_2_7_API 0
# endif // !
defined(LIBRESSL_VERSION_NUMBER)
# endif // !
LIBRESSL_VERSION_NUMBER
#endif // OPENSSL_COMPAT_H
src/util.cc
View file @
c790ee64
...
...
@@ -1649,7 +1649,7 @@ std::mt19937 make_mt19937() {
}
int
daemonize
(
int
nochdir
,
int
noclose
)
{
#if
defined(__APPLE__)
#if
def __APPLE__
pid_t
pid
;
pid
=
fork
();
if
(
pid
==
-
1
)
{
...
...
@@ -1683,9 +1683,9 @@ int daemonize(int nochdir, int noclose) {
}
}
return
0
;
#else // !
defined(__APPLE__)
#else // !
__APPLE__
return
daemon
(
nochdir
,
noclose
);
#endif // !
defined(__APPLE__)
#endif // !
__APPLE__
}
#ifdef ENABLE_HTTP3
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment