Skip to content

Commit

Permalink
Rename vibe.http.internal.http2.http2 module to .server.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Jun 27, 2024
1 parent 8f69d09 commit 317ce56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/http2/source/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import vibe.http.server;
import vibe.stream.tls;
import vibe.http.internal.http2.http2 : http2Callback; // ALPN negotiation
import vibe.http.internal.http2.server : http2Callback; // ALPN negotiation
import vibe.core.core : runApplication;

/* ==== declare two handlers (could use the same one) ==== */
Expand Down
2 changes: 1 addition & 1 deletion source/vibe/http/internal/http1.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module vibe.http.internal.http1;

import vibe.http.internal.http2.http2;
import vibe.http.internal.http2.server;
import vibe.http.internal.http2.settings;
import vibe.core.stream;
import vibe.core.core : runTask;
Expand Down
2 changes: 1 addition & 1 deletion source/vibe/http/internal/http2/exchange.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module vibe.http.internal.http2.exchange;

import vibe.http.internal.http2.multiplexing;
import vibe.http.internal.http2.settings;
import vibe.http.internal.http2.http2 : HTTP2ConnectionStream, HTTP2StreamState;
import vibe.http.internal.http2.server : HTTP2ConnectionStream, HTTP2StreamState;
import vibe.http.internal.http2.hpack.hpack;
import vibe.http.internal.http2.hpack.tables;
import vibe.http.internal.http2.frame;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module vibe.http.internal.http2.http2;
module vibe.http.internal.http2.server;

import vibe.http.internal.http2.error;
import vibe.http.internal.http2.multiplexing;
Expand Down

0 comments on commit 317ce56

Please sign in to comment.