diff options
author | Loïc Hoguin <[email protected]> | 2011-04-18 13:24:27 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2011-04-18 13:24:27 +0200 |
commit | 2beb5c8206cf33f04ef778ebc67839c1bd71add8 (patch) | |
tree | 886f908b1a16e7de0aecbf2bf25f6b405f8b67ee /src/cowboy_http_protocol.erl | |
parent | 6712eaa5c8196dc1ba179257d050b131959c2a1b (diff) | |
download | cowboy-2beb5c8206cf33f04ef778ebc67839c1bd71add8.tar.gz cowboy-2beb5c8206cf33f04ef778ebc67839c1bd71add8.tar.bz2 cowboy-2beb5c8206cf33f04ef778ebc67839c1bd71add8.zip |
Move the dispatcher related types into cowboy_dispatcher.
Diffstat (limited to 'src/cowboy_http_protocol.erl')
-rw-r--r-- | src/cowboy_http_protocol.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cowboy_http_protocol.erl b/src/cowboy_http_protocol.erl index 402224d..5e9e636 100644 --- a/src/cowboy_http_protocol.erl +++ b/src/cowboy_http_protocol.erl @@ -22,7 +22,7 @@ -record(state, { socket :: inet:socket(), transport :: module(), - dispatch :: dispatch_rules(), + dispatch :: cowboy_dispatcher:dispatch_rules(), handler :: {Handler::module(), Opts::term()}, req_empty_lines = 0 :: integer(), max_empty_lines :: integer(), |