diff options
author | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2017-06-23 19:20:08 +0300 |
commit | b8f126dcdfdf04bb01b70f9590fc64b3e155e119 (patch) | |
tree | 49fc84fb72e1483103c639e5c394820d8127223f /src/nxt_main.h | |
parent | 4a1b59c27a8e85fc3b03c420fbc1642ce52e96cf (diff) | |
download | unit-b8f126dcdfdf04bb01b70f9590fc64b3e155e119.tar.gz unit-b8f126dcdfdf04bb01b70f9590fc64b3e155e119.tar.bz2 |
Added basic HTTP request processing in router.
- request to connection mapping in engine;
- requests queue in connection;
- engine port creation;
- connected ports hash for each process;
- engine port data messages processing (app responses);
Diffstat (limited to 'src/nxt_main.h')
-rw-r--r-- | src/nxt_main.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_main.h b/src/nxt_main.h index 0aa2192c..4b9a9036 100644 --- a/src/nxt_main.h +++ b/src/nxt_main.h @@ -26,7 +26,6 @@ typedef struct nxt_runtime_s nxt_runtime_t; typedef uint16_t nxt_port_id_t; #include <nxt_queue.h> -#include <nxt_process.h> typedef struct nxt_thread_s nxt_thread_t; #include <nxt_thread_id.h> @@ -36,6 +35,8 @@ typedef struct nxt_thread_s nxt_thread_t; #include <nxt_random.h> #include <nxt_string.h> +#include <nxt_lvlhsh.h> +#include <nxt_process.h> #include <nxt_utf8.h> #include <nxt_file_name.h> @@ -90,7 +91,6 @@ typedef struct nxt_thread_pool_s nxt_thread_pool_t; #include <nxt_djb_hash.h> #include <nxt_murmur_hash.h> -#include <nxt_lvlhsh.h> #include <nxt_hash.h> #include <nxt_sort.h> |