Skip to content

Commit 232f335

Browse files
Include aws_string (#173)
* Include aws_string. * fix missing inclusion in test.
1 parent 73782be commit 232f335

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

source/connection_manager.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@
1515

1616
#include <aws/http/connection_manager.h>
1717

18-
#include <aws/common/atomics.h>
19-
#include <aws/common/hash_table.h>
20-
#include <aws/common/linked_list.h>
21-
#include <aws/common/mutex.h>
2218
#include <aws/http/connection.h>
2319
#include <aws/http/private/connection_manager_system_vtable.h>
2420
#include <aws/http/private/http_impl.h>
2521
#include <aws/http/private/proxy_impl.h>
22+
2623
#include <aws/io/channel_bootstrap.h>
2724
#include <aws/io/logging.h>
2825
#include <aws/io/socket.h>
2926
#include <aws/io/tls_channel_handler.h>
3027

28+
#include <aws/common/atomics.h>
29+
#include <aws/common/hash_table.h>
30+
#include <aws/common/linked_list.h>
31+
#include <aws/common/mutex.h>
32+
#include <aws/common/string.h>
33+
3134
/*
3235
* System vtable to use under normal circumstances
3336
*/

tests/test_proxy.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
#include <aws/http/private/connection_impl.h>
1919
#include <aws/http/private/h1_stream.h>
2020
#include <aws/http/private/proxy_impl.h>
21+
2122
#include <aws/io/uri.h>
23+
24+
#include <aws/common/string.h>
25+
2226
#include <aws/testing/aws_test_harness.h>
2327
#include <aws/testing/io_testing_channel.h>
2428

0 commit comments

Comments
 (0)