diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2016-02-25 14:07:29 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2016-02-25 14:07:29 -0800 |
commit | 1d7704d7a1ac694fd4f3098437b98f2616368010 (patch) | |
tree | f82022fabf149d9773e0eb16d1a01bc42fd95003 /src/core/httpcli | |
parent | 85371a2bb09dc955c35e194efb461ee3d374c128 (diff) |
Fix windows
Diffstat (limited to 'src/core/httpcli')
-rw-r--r-- | src/core/httpcli/httpcli.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/httpcli/httpcli.c b/src/core/httpcli/httpcli.c index 71237bb614..2ac93ab6a3 100644 --- a/src/core/httpcli/httpcli.c +++ b/src/core/httpcli/httpcli.c @@ -36,15 +36,17 @@ #include <string.h> +#include <grpc/support/alloc.h> +#include <grpc/support/log.h> +#include <grpc/support/string_util.h> + #include "src/core/iomgr/endpoint.h" +#include "src/core/iomgr/iomgr_internal.h" #include "src/core/iomgr/resolve_address.h" #include "src/core/iomgr/tcp_client.h" #include "src/core/httpcli/format_request.h" #include "src/core/httpcli/parser.h" #include "src/core/support/string.h" -#include <grpc/support/alloc.h> -#include <grpc/support/log.h> -#include <grpc/support/string_util.h> typedef struct { gpr_slice request_text; |