Fix header guards in QUICHE. find epoll_server quiche quic spdy http2 -name "*.h" | while read filename ; \ do guard=`echo $filename | sed \ "s/\//_/g;s/\./_/;s/^/third_party_/;s/$/_/;s/[a-z]/\U&/g"` ; \ count=`grep "$guard" "$filename" | wc -l` ; \ [ "$count" -ne "3" ] && echo $guard >> $filename ; done ; \ vim `hg st -n` PiperOrigin-RevId: 440985605
diff --git a/quiche/common/platform/api/quiche_reference_counted.h b/quiche/common/platform/api/quiche_reference_counted.h index a2cc296..61016da 100644 --- a/quiche/common/platform/api/quiche_reference_counted.h +++ b/quiche/common/platform/api/quiche_reference_counted.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_API_QUIC_REFERENCE_COUNTED_H_ -#define QUICHE_QUIC_PLATFORM_API_QUIC_REFERENCE_COUNTED_H_ +#ifndef QUICHE_COMMON_PLATFORM_API_QUICHE_REFERENCE_COUNTED_H_ +#define QUICHE_COMMON_PLATFORM_API_QUICHE_REFERENCE_COUNTED_H_ #include "quiche_platform_impl/quiche_reference_counted_impl.h" #include "quiche/common/platform/api/quiche_export.h" @@ -166,4 +166,4 @@ } // namespace quiche -#endif // QUICHE_QUIC_PLATFORM_API_QUIC_REFERENCE_COUNTED_H_ +#endif // QUICHE_COMMON_PLATFORM_API_QUICHE_REFERENCE_COUNTED_H_
diff --git a/quiche/common/platform/default/quiche_platform_impl/quiche_time_utils_impl.h b/quiche/common/platform/default/quiche_platform_impl/quiche_time_utils_impl.h index 56a08db..369867d 100644 --- a/quiche/common/platform/default/quiche_platform_impl/quiche_time_utils_impl.h +++ b/quiche/common/platform/default/quiche_platform_impl/quiche_time_utils_impl.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_COMMON_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_ -#define QUICHE_COMMON_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_ +#ifndef QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_ +#define QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_ #include <cstdint> @@ -20,4 +20,4 @@ } // namespace quiche -#endif // QUICHE_COMMON_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_ +#endif // QUICHE_COMMON_PLATFORM_DEFAULT_QUICHE_PLATFORM_IMPL_QUICHE_TIME_UTILS_IMPL_H_
diff --git a/quiche/common/simple_buffer_allocator.h b/quiche/common/simple_buffer_allocator.h index eb98196..d5ed06f 100644 --- a/quiche/common/simple_buffer_allocator.h +++ b/quiche/common/simple_buffer_allocator.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_COMMON_QUICHE_SIMPLE_BUFFER_ALLOCATOR_H_ -#define QUICHE_COMMON_QUICHE_SIMPLE_BUFFER_ALLOCATOR_H_ +#ifndef QUICHE_COMMON_SIMPLE_BUFFER_ALLOCATOR_H_ +#define QUICHE_COMMON_SIMPLE_BUFFER_ALLOCATOR_H_ #include "quiche/common/platform/api/quiche_export.h" #include "quiche/common/quiche_buffer_allocator.h" @@ -28,4 +28,4 @@ } // namespace quiche -#endif // QUICHE_COMMON_QUICHE_SIMPLE_BUFFER_ALLOCATOR_H_ +#endif // QUICHE_COMMON_SIMPLE_BUFFER_ALLOCATOR_H_
diff --git a/quiche/common/test_tools/quiche_test_utils.h b/quiche/common/test_tools/quiche_test_utils.h index a9ef27a..088ccd5 100644 --- a/quiche/common/test_tools/quiche_test_utils.h +++ b/quiche/common/test_tools/quiche_test_utils.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_COMMON_QUICHE_TEST_UTILS_H_ -#define QUICHE_COMMON_QUICHE_TEST_UTILS_H_ +#ifndef QUICHE_COMMON_TEST_TOOLS_QUICHE_TEST_UTILS_H_ +#define QUICHE_COMMON_TEST_TOOLS_QUICHE_TEST_UTILS_H_ #include <string> @@ -25,4 +25,4 @@ } // namespace test } // namespace quiche -#endif // QUICHE_COMMON_QUICHE_TEST_UTILS_H_ +#endif // QUICHE_COMMON_TEST_TOOLS_QUICHE_TEST_UTILS_H_
diff --git a/quiche/epoll_server/simple_epoll_server.h b/quiche/epoll_server/simple_epoll_server.h index bfe784b..7aeba67 100644 --- a/quiche/epoll_server/simple_epoll_server.h +++ b/quiche/epoll_server/simple_epoll_server.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_EPOLL_SERVER_H_ -#define QUICHE_EPOLL_SERVER_H_ +#ifndef QUICHE_EPOLL_SERVER_SIMPLE_EPOLL_SERVER_H_ +#define QUICHE_EPOLL_SERVER_SIMPLE_EPOLL_SERVER_H_ #include <fcntl.h> #include <stddef.h> @@ -1049,4 +1049,4 @@ } // namespace epoll_server -#endif // QUICHE_EPOLL_SERVER_H_ +#endif // QUICHE_EPOLL_SERVER_SIMPLE_EPOLL_SERVER_H_
diff --git a/quiche/http2/adapter/mock_http2_visitor.h b/quiche/http2/adapter/mock_http2_visitor.h index 8da7d81..1754345 100644 --- a/quiche/http2/adapter/mock_http2_visitor.h +++ b/quiche/http2/adapter/mock_http2_visitor.h
@@ -1,5 +1,5 @@ -#ifndef QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_INTERFACE_H_ -#define QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_INTERFACE_H_ +#ifndef QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_H_ +#define QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_H_ #include <cstdint> @@ -128,4 +128,4 @@ } // namespace adapter } // namespace http2 -#endif // QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_INTERFACE_H_ +#endif // QUICHE_HTTP2_ADAPTER_MOCK_HTTP2_VISITOR_H_
diff --git a/quiche/quic/core/batch_writer/quic_batch_writer_base.h b/quiche/quic/core/batch_writer/quic_batch_writer_base.h index fc776c2..4e09a40 100644 --- a/quiche/quic/core/batch_writer/quic_batch_writer_base.h +++ b/quiche/quic/core/batch_writer/quic_batch_writer_base.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_ +#ifndef QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_ +#define QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_ #include <cstdint> #include "quiche/quic/core/batch_writer/quic_batch_writer_buffer.h" @@ -155,4 +155,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_ +#endif // QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BASE_H_
diff --git a/quiche/quic/core/batch_writer/quic_batch_writer_buffer.h b/quiche/quic/core/batch_writer/quic_batch_writer_buffer.h index 4cf512b..b6fc412 100644 --- a/quiche/quic/core/batch_writer/quic_batch_writer_buffer.h +++ b/quiche/quic/core/batch_writer/quic_batch_writer_buffer.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_ +#ifndef QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_ +#define QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_ #include "absl/base/optimization.h" #include "quiche/quic/core/quic_linux_socket_utils.h" @@ -92,4 +92,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_ +#endif // QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_BUFFER_H_
diff --git a/quiche/quic/core/batch_writer/quic_batch_writer_test.h b/quiche/quic/core/batch_writer/quic_batch_writer_test.h index 71c8aa8..e42457c 100644 --- a/quiche/quic/core/batch_writer/quic_batch_writer_test.h +++ b/quiche/quic/core/batch_writer/quic_batch_writer_test.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_ +#ifndef QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_ +#define QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_ #include <sys/socket.h> #include <sys/types.h> @@ -284,4 +284,4 @@ } // namespace test } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_ +#endif // QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_BATCH_WRITER_TEST_H_
diff --git a/quiche/quic/core/batch_writer/quic_gso_batch_writer.h b/quiche/quic/core/batch_writer/quic_gso_batch_writer.h index 6321cb5..70add6a 100644 --- a/quiche/quic/core/batch_writer/quic_gso_batch_writer.h +++ b/quiche/quic/core/batch_writer/quic_gso_batch_writer.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_ +#ifndef QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_ +#define QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_ #include "quiche/quic/core/batch_writer/quic_batch_writer_base.h" @@ -114,4 +114,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_ +#endif // QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_GSO_BATCH_WRITER_H_
diff --git a/quiche/quic/core/batch_writer/quic_sendmmsg_batch_writer.h b/quiche/quic/core/batch_writer/quic_sendmmsg_batch_writer.h index afbec10..de78fd1 100644 --- a/quiche/quic/core/batch_writer/quic_sendmmsg_batch_writer.h +++ b/quiche/quic/core/batch_writer/quic_sendmmsg_batch_writer.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_QUIC_SENDMMSG_BATCH_WRITER_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_QUIC_SENDMMSG_BATCH_WRITER_H_ +#ifndef QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_SENDMMSG_BATCH_WRITER_H_ +#define QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_SENDMMSG_BATCH_WRITER_H_ #include "quiche/quic/core/batch_writer/quic_batch_writer_base.h" #include "quiche/quic/core/quic_linux_socket_utils.h" @@ -32,4 +32,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_QUIC_SENDMMSG_BATCH_WRITER_H_ +#endif // QUICHE_QUIC_CORE_BATCH_WRITER_QUIC_SENDMMSG_BATCH_WRITER_H_
diff --git a/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.h b/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.h index 87ecf2a..6082ca5 100644 --- a/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.h +++ b/quiche/quic/core/crypto/web_transport_fingerprint_proof_verifier.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_QUIC_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_ -#define QUICHE_QUIC_QUIC_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_ +#ifndef QUICHE_QUIC_CORE_CRYPTO_WEB_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_ +#define QUICHE_QUIC_CORE_CRYPTO_WEB_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_ #include <vector> @@ -132,4 +132,4 @@ } // namespace quic -#endif // QUICHE_QUIC_QUIC_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_ +#endif // QUICHE_QUIC_CORE_CRYPTO_WEB_TRANSPORT_FINGERPRINT_PROOF_VERIFIER_H_
diff --git a/quiche/quic/core/http/web_transport_stream_adapter.h b/quiche/quic/core/http/web_transport_stream_adapter.h index 5549cba..560b63f 100644 --- a/quiche/quic/core/http/web_transport_stream_adapter.h +++ b/quiche/quic/core/http/web_transport_stream_adapter.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_CORE_WEB_TRANSPORT_STREAM_ADAPTER_H_ -#define QUICHE_QUIC_CORE_WEB_TRANSPORT_STREAM_ADAPTER_H_ +#ifndef QUICHE_QUIC_CORE_HTTP_WEB_TRANSPORT_STREAM_ADAPTER_H_ +#define QUICHE_QUIC_CORE_HTTP_WEB_TRANSPORT_STREAM_ADAPTER_H_ #include "quiche/quic/core/quic_session.h" #include "quiche/quic/core/quic_stream.h" @@ -63,4 +63,4 @@ } // namespace quic -#endif // QUICHE_QUIC_CORE_WEB_TRANSPORT_STREAM_ADAPTER_H_ +#endif // QUICHE_QUIC_CORE_HTTP_WEB_TRANSPORT_STREAM_ADAPTER_H_
diff --git a/quiche/quic/core/qpack/qpack_required_insert_count.h b/quiche/quic/core/qpack/qpack_required_insert_count.h index 9b4252e..f20c759 100644 --- a/quiche/quic/core/qpack/qpack_required_insert_count.h +++ b/quiche/quic/core/qpack/qpack_required_insert_count.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_CORE_QPACK_REQUIRED_INSERT_COUNT_H_ -#define QUICHE_QUIC_CORE_QPACK_REQUIRED_INSERT_COUNT_H_ +#ifndef QUICHE_QUIC_CORE_QPACK_QPACK_REQUIRED_INSERT_COUNT_H_ +#define QUICHE_QUIC_CORE_QPACK_QPACK_REQUIRED_INSERT_COUNT_H_ #include <cstdint> @@ -30,4 +30,4 @@ } // namespace quic -#endif // QUICHE_QUIC_CORE_QPACK_REQUIRED_INSERT_COUNT_H_ +#endif // QUICHE_QUIC_CORE_QPACK_QPACK_REQUIRED_INSERT_COUNT_H_
diff --git a/quiche/quic/core/quic_linux_socket_utils.h b/quiche/quic/core/quic_linux_socket_utils.h index 7203a17..f675f19 100644 --- a/quiche/quic/core/quic_linux_socket_utils.h +++ b/quiche/quic/core/quic_linux_socket_utils.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_QUIC_LINUX_SOCKET_UTILS_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_QUIC_LINUX_SOCKET_UTILS_H_ +#ifndef QUICHE_QUIC_CORE_QUIC_LINUX_SOCKET_UTILS_H_ +#define QUICHE_QUIC_CORE_QUIC_LINUX_SOCKET_UTILS_H_ #include <errno.h> #include <stddef.h> @@ -294,4 +294,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_QUIC_LINUX_SOCKET_UTILS_H_ +#endif // QUICHE_QUIC_CORE_QUIC_LINUX_SOCKET_UTILS_H_
diff --git a/quiche/quic/core/quic_syscall_wrapper.h b/quiche/quic/core/quic_syscall_wrapper.h index f7a6271..fb9e316 100644 --- a/quiche/quic/core/quic_syscall_wrapper.h +++ b/quiche/quic/core/quic_syscall_wrapper.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_QUIC_SYSCALL_WRAPPER_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_QUIC_SYSCALL_WRAPPER_H_ +#ifndef QUICHE_QUIC_CORE_QUIC_SYSCALL_WRAPPER_H_ +#define QUICHE_QUIC_CORE_QUIC_SYSCALL_WRAPPER_H_ #include <sys/socket.h> #include <sys/types.h> @@ -46,4 +46,4 @@ } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_QUIC_SYSCALL_WRAPPER_H_ +#endif // QUICHE_QUIC_CORE_QUIC_SYSCALL_WRAPPER_H_
diff --git a/quiche/quic/load_balancer/load_balancer_config.h b/quiche/quic/load_balancer/load_balancer_config.h index e7d7bcc..735db94 100644 --- a/quiche/quic/load_balancer/load_balancer_config.h +++ b/quiche/quic/load_balancer/load_balancer_config.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_LOAD_BALANCER_CONFIG_H_ -#define QUICHE_QUIC_LOAD_BALANCER_CONFIG_H_ +#ifndef QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_CONFIG_H_ +#define QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_CONFIG_H_ #include "third_party/boringssl/src/include/openssl/aes.h" #include "quiche/quic/core/quic_types.h" @@ -90,4 +90,4 @@ } // namespace quic -#endif // QUICHE_QUIC_LOAD_BALANCER_CONFIG_H +#endif // QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_CONFIG_H_
diff --git a/quiche/quic/load_balancer/load_balancer_encoder.h b/quiche/quic/load_balancer/load_balancer_encoder.h index 2dc33c6..b48bb19 100644 --- a/quiche/quic/load_balancer/load_balancer_encoder.h +++ b/quiche/quic/load_balancer/load_balancer_encoder.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_LOAD_BALANCER_ENCODER_H_ -#define QUICHE_QUIC_LOAD_BALANCER_ENCODER_H_ +#ifndef QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_ENCODER_H_ +#define QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_ENCODER_H_ #include "quiche/quic/core/crypto/quic_random.h" #include "quiche/quic/load_balancer/load_balancer_config.h" @@ -120,4 +120,4 @@ } // namespace quic -#endif // QUICHE_QUIC_LOAD_BALANCER_ENCODER_H_ +#endif // QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_ENCODER_H_
diff --git a/quiche/quic/load_balancer/load_balancer_server_id.h b/quiche/quic/load_balancer/load_balancer_server_id.h index 039d615..a3398a9 100644 --- a/quiche/quic/load_balancer/load_balancer_server_id.h +++ b/quiche/quic/load_balancer/load_balancer_server_id.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_LOAD_BALANCER_SERVER_ID_H_ -#define QUICHE_QUIC_LOAD_BALANCER_SERVER_ID_H_ +#ifndef QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_SERVER_ID_H_ +#define QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_SERVER_ID_H_ #include <array> @@ -62,4 +62,4 @@ } // namespace quic -#endif // QUICHE_QUIC_LOAD_BALANCER_SERVER_ID_H_ +#endif // QUICHE_QUIC_LOAD_BALANCER_LOAD_BALANCER_SERVER_ID_H_
diff --git a/quiche/quic/masque/masque_compression_engine.h b/quiche/quic/masque/masque_compression_engine.h index 1ab1f2e..8c09de2 100644 --- a/quiche/quic/masque/masque_compression_engine.h +++ b/quiche/quic/masque/masque_compression_engine.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_MASQUE_MASQUE_PROTOCOL_H_ -#define QUICHE_QUIC_MASQUE_MASQUE_PROTOCOL_H_ +#ifndef QUICHE_QUIC_MASQUE_MASQUE_COMPRESSION_ENGINE_H_ +#define QUICHE_QUIC_MASQUE_MASQUE_COMPRESSION_ENGINE_H_ #include "absl/container/flat_hash_map.h" #include "absl/strings/string_view.h" @@ -117,4 +117,4 @@ } // namespace quic -#endif // QUICHE_QUIC_MASQUE_MASQUE_PROTOCOL_H_ +#endif // QUICHE_QUIC_MASQUE_MASQUE_COMPRESSION_ENGINE_H_
diff --git a/quiche/quic/quic_transport/quic_transport_client_session.h b/quiche/quic/quic_transport/quic_transport_client_session.h index 9cfe3c3..46bbb1a 100644 --- a/quiche/quic/quic_transport/quic_transport_client_session.h +++ b/quiche/quic/quic_transport/quic_transport_client_session.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SESSION_H_ -#define QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SESSION_H_ +#ifndef QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_CLIENT_SESSION_H_ +#define QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_CLIENT_SESSION_H_ #include <cstdint> #include <memory> @@ -173,4 +173,4 @@ } // namespace quic -#endif // QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_SESSION_H_ +#endif // QUICHE_QUIC_QUIC_TRANSPORT_QUIC_TRANSPORT_CLIENT_SESSION_H_
diff --git a/quiche/quic/test_tools/quic_mock_syscall_wrapper.h b/quiche/quic/test_tools/quic_mock_syscall_wrapper.h index 72a33a8..31f7770 100644 --- a/quiche/quic/test_tools/quic_mock_syscall_wrapper.h +++ b/quiche/quic/test_tools/quic_mock_syscall_wrapper.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_PLATFORM_IMPL_QUIC_MOCK_SYSCALL_WRAPPER_H_ -#define QUICHE_QUIC_PLATFORM_IMPL_QUIC_MOCK_SYSCALL_WRAPPER_H_ +#ifndef QUICHE_QUIC_TEST_TOOLS_QUIC_MOCK_SYSCALL_WRAPPER_H_ +#define QUICHE_QUIC_TEST_TOOLS_QUIC_MOCK_SYSCALL_WRAPPER_H_ #include "quiche/quic/core/quic_syscall_wrapper.h" #include "quiche/quic/platform/api/quic_test.h" @@ -34,4 +34,4 @@ } // namespace test } // namespace quic -#endif // QUICHE_QUIC_PLATFORM_IMPL_QUIC_MOCK_SYSCALL_WRAPPER_H_ +#endif // QUICHE_QUIC_TEST_TOOLS_QUIC_MOCK_SYSCALL_WRAPPER_H_
diff --git a/quiche/quic/test_tools/quic_stream_id_manager_peer.h b/quiche/quic/test_tools/quic_stream_id_manager_peer.h index 68799e2..2dcde94 100644 --- a/quiche/quic/test_tools/quic_stream_id_manager_peer.h +++ b/quiche/quic/test_tools/quic_stream_id_manager_peer.h
@@ -1,6 +1,7 @@ // Copyright (c) 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. + #ifndef QUICHE_QUIC_TEST_TOOLS_QUIC_STREAM_ID_MANAGER_PEER_H_ #define QUICHE_QUIC_TEST_TOOLS_QUIC_STREAM_ID_MANAGER_PEER_H_ @@ -35,4 +36,4 @@ } // namespace quic -#endif // QUICHE_QUIC_TEST_TOOLS_QUIC_SESSION_PEER_H_ +#endif // QUICHE_QUIC_TEST_TOOLS_QUIC_STREAM_ID_MANAGER_PEER_H_
diff --git a/quiche/quic/tools/quic_epoll_client_factory.h b/quiche/quic/tools/quic_epoll_client_factory.h index 1e5708f..a911c50 100644 --- a/quiche/quic/tools/quic_epoll_client_factory.h +++ b/quiche/quic/tools/quic_epoll_client_factory.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_TOOLS_EPOLL_CLIENT_FACTORY_H_ -#define QUICHE_QUIC_TOOLS_EPOLL_CLIENT_FACTORY_H_ +#ifndef QUICHE_QUIC_TOOLS_QUIC_EPOLL_CLIENT_FACTORY_H_ +#define QUICHE_QUIC_TOOLS_QUIC_EPOLL_CLIENT_FACTORY_H_ #include "quiche/quic/platform/api/quic_epoll.h" #include "quiche/quic/tools/quic_toy_client.h" @@ -29,4 +29,4 @@ } // namespace quic -#endif // QUICHE_QUIC_TOOLS_EPOLL_CLIENT_FACTORY_H_ +#endif // QUICHE_QUIC_TOOLS_QUIC_EPOLL_CLIENT_FACTORY_H_
diff --git a/quiche/quic/tools/quic_epoll_server_factory.h b/quiche/quic/tools/quic_epoll_server_factory.h index 6d6876a..c1e2e2c 100644 --- a/quiche/quic/tools/quic_epoll_server_factory.h +++ b/quiche/quic/tools/quic_epoll_server_factory.h
@@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef QUICHE_QUIC_TOOLS_EPOLL_SERVER_FACTORY_H_ -#define QUICHE_QUIC_TOOLS_EPOLL_SERVER_FACTORY_H_ +#ifndef QUICHE_QUIC_TOOLS_QUIC_EPOLL_SERVER_FACTORY_H_ +#define QUICHE_QUIC_TOOLS_QUIC_EPOLL_SERVER_FACTORY_H_ #include "quiche/quic/platform/api/quic_epoll.h" #include "quiche/quic/tools/quic_toy_server.h" @@ -24,4 +24,4 @@ } // namespace quic -#endif // QUICHE_QUIC_TOOLS_EPOLL_SERVER_FACTORY_H_ +#endif // QUICHE_QUIC_TOOLS_QUIC_EPOLL_SERVER_FACTORY_H_