Skip to content

Commit

Permalink
Deploying to gh-pages from @ fc62f90 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
XAMPPRocky committed Jan 30, 2025
1 parent 1caa793 commit 74100f1
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
22 changes: 11 additions & 11 deletions main/api/src/quilkin/cli/service.rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,75 +470,75 @@
<span class="doccomment">/// Whether to serve mDS requests.
</span><span class="attr">#[arg(
long = <span class="string">"service.mds"</span>,
env = <span class="string">"QUILKIN_PUBLISH_MDS"</span>,
env = <span class="string">"QUILKIN_SERVICE_MDS"</span>,
default_value_t = <span class="bool-val">false
</span>)]
</span>mds_enabled: bool,
<span class="doccomment">/// The TCP port to listen to serve xDS requests.
</span><span class="attr">#[clap(
long = <span class="string">"service.mds.port"</span>,
env = <span class="string">"QUILKIN_PUBLISH_MDS_PORT"</span>,
env = <span class="string">"QUILKIN_SERVICE_MDS_PORT"</span>,
default_value_t = <span class="number">7900
</span>)]
</span>mds_port: u16,
<span class="doccomment">/// Whether to serve UDP requests.
</span><span class="attr">#[arg(
long = <span class="string">"service.phoenix"</span>,
env = <span class="string">"QUILKIN_PUBLISH_PHOENIX"</span>,
env = <span class="string">"QUILKIN_SERVICE_PHOENIX"</span>,
default_value_t = <span class="bool-val">false
</span>)]
</span>phoenix_enabled: bool,
<span class="doccomment">/// The UDP port to listen for UDP packets.
</span><span class="attr">#[clap(
long = <span class="string">"service.phoenix.port"</span>,
env = <span class="string">"QUILKIN_PUBLISH_PHOENIX_PORT"</span>,
env = <span class="string">"QUILKIN_SERVICE_PHOENIX_PORT"</span>,
default_value_t = <span class="number">7600
</span>)]
</span>phoenix_port: u16,
<span class="doccomment">/// Whether to serve UDP requests.
</span><span class="attr">#[arg(
long = <span class="string">"service.qcmp"</span>,
env = <span class="string">"QUILKIN_PUBLISH_QCMP"</span>,
env = <span class="string">"QUILKIN_SERVICE_QCMP"</span>,
default_value_t = <span class="bool-val">false
</span>)]
</span>qcmp_enabled: bool,
<span class="doccomment">/// The UDP port to listen for UDP packets.
</span><span class="attr">#[clap(
long = <span class="string">"service.qcmp.port"</span>,
env = <span class="string">"QUILKIN_PUBLISH_QCMP_PORT"</span>,
env = <span class="string">"QUILKIN_SERVICE_QCMP_PORT"</span>,
default_value_t = <span class="number">7600
</span>)]
</span>qcmp_port: u16,
<span class="doccomment">/// Whether to serve UDP requests.
</span><span class="attr">#[arg(
long = <span class="string">"service.udp"</span>,
env = <span class="string">"QUILKIN_PUBLISH_UDP"</span>,
env = <span class="string">"QUILKIN_SERVICE_UDP"</span>,
default_value_t = <span class="bool-val">false
</span>)]
</span>udp_enabled: bool,
<span class="doccomment">/// The UDP port to listen for UDP packets.
</span><span class="attr">#[clap(
long = <span class="string">"service.udp.port"</span>,
env = <span class="string">"QUILKIN_PUBLISH_UDP_PORT"</span>,
env = <span class="string">"QUILKIN_SERVICE_UDP_PORT"</span>,
default_value_t = <span class="number">7777
</span>)]
</span>udp_port: u16,
<span class="attr">#[clap(flatten)]
</span><span class="kw">pub </span>xdp: XdpOptions,
<span class="doccomment">/// Amount of UDP workers to run.
</span><span class="attr">#[clap(long = <span class="string">"service.udp.workers"</span>, env = <span class="string">"QUILKIN_PUBLISH_UDP_WORKERS"</span>, default_value_t = std::num::NonZeroUsize::new(num_cpus::get()).unwrap())]
</span><span class="attr">#[clap(long = <span class="string">"service.udp.workers"</span>, env = <span class="string">"QUILKIN_SERVICE_UDP_WORKERS"</span>, default_value_t = std::num::NonZeroUsize::new(num_cpus::get()).unwrap())]
</span><span class="kw">pub </span>udp_workers: std::num::NonZeroUsize,
<span class="doccomment">/// Whether to serve xDS requests.
</span><span class="attr">#[arg(
long = <span class="string">"service.xds"</span>,
env = <span class="string">"QUILKIN_PUBLISH_XDS"</span>,
env = <span class="string">"QUILKIN_SERVICE_XDS"</span>,
default_value_t = <span class="bool-val">false
</span>)]
</span>xds_enabled: bool,
<span class="doccomment">/// The TCP port to listen to serve xDS requests.
</span><span class="attr">#[clap(
long = <span class="string">"service.xds.port"</span>,
env = <span class="string">"QUILKIN_PUBLISH_XDS_PORT"</span>,
env = <span class="string">"QUILKIN_SERVICE_XDS_PORT"</span>,
default_value_t = <span class="number">7800
</span>)]
</span>xds_port: u16,
Expand Down
4 changes: 2 additions & 2 deletions main/book/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ <h2 id="what-next"><a class="header" href="#what-next">What Next?</a></h2>
for deploying quilkin for your game network.</li>
</ul>
<pre><code class="language-shell">$ quilkin --help
{"timestamp":"2025-01-30T10:38:24.551899Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"47e47be745a8bd2a7738051b8adec524eb944222"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T10:38:24.552056Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.867974Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"fc62f90cb2101faa2a351ddcd2b73a15a1d52c7b"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.868124Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
</code></pre>

</main>
Expand Down
2 changes: 1 addition & 1 deletion main/book/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ <h3 id="oci-image"><a class="header" href="#oci-image"><a href="https://us-docke
<dl>
<dt><strong>Source / Method</strong></dt>
<dd>
<pre><code>us-docker.pkg.dev/quilkin/release/quilkin:0.10.0-dev-47e47be
<pre><code>us-docker.pkg.dev/quilkin/release/quilkin:0.10.0-dev-fc62f90
</code></pre>
</dd>
<dt><strong>Notes</strong></dt>
Expand Down
4 changes: 2 additions & 2 deletions main/book/introduction.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ <h2 id="what-next"><a class="header" href="#what-next">What Next?</a></h2>
for deploying quilkin for your game network.</li>
</ul>
<pre><code class="language-shell">$ quilkin --help
{"timestamp":"2025-01-30T10:38:24.551899Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"47e47be745a8bd2a7738051b8adec524eb944222"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T10:38:24.552056Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.867974Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"fc62f90cb2101faa2a351ddcd2b73a15a1d52c7b"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.868124Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
</code></pre>

</main>
Expand Down
6 changes: 3 additions & 3 deletions main/book/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ <h2 id="what-next"><a class="header" href="#what-next">What Next?</a></h2>
for deploying quilkin for your game network.</li>
</ul>
<pre><code class="language-shell">$ quilkin --help
{"timestamp":"2025-01-30T10:38:24.551899Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"47e47be745a8bd2a7738051b8adec524eb944222"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T10:38:24.552056Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.867974Z","level":"INFO","fields":{"message":"Starting Quilkin","version":"0.10.0-dev","commit":"fc62f90cb2101faa2a351ddcd2b73a15a1d52c7b"},"target":"quilkin::cli","filename":"src/cli.rs","threadId":"ThreadId(1)"}
{"timestamp":"2025-01-30T11:44:02.868124Z","level":"ERROR","fields":{"message":"fatal error","error":"no service specified, shutting down","error_debug":"no service specified, shutting down"},"target":"quilkin","filename":"src/main.rs","threadId":"ThreadId(1)"}
</code></pre>
<div style="break-before: page; page-break-before: always;"></div><h1 id="installation"><a class="header" href="#installation">Installation</a></h1>
<p>There are variety of automated and manual methods for installing Quilkin onto
Expand All @@ -211,7 +211,7 @@ <h3 id="oci-image"><a class="header" href="#oci-image"><a href="https://us-docke
<dl>
<dt><strong>Source / Method</strong></dt>
<dd>
<pre><code>us-docker.pkg.dev/quilkin/release/quilkin:0.10.0-dev-47e47be
<pre><code>us-docker.pkg.dev/quilkin/release/quilkin:0.10.0-dev-fc62f90
</code></pre>
</dd>
<dt><strong>Notes</strong></dt>
Expand Down
2 changes: 1 addition & 1 deletion main/book/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion main/book/searchindex.json

Large diffs are not rendered by default.

0 comments on commit 74100f1

Please sign in to comment.