summaryrefslogtreecommitdiffstats
path: root/include/internal/quic_port.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/quic_port.h')
-rw-r--r--include/internal/quic_port.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/internal/quic_port.h b/include/internal/quic_port.h
index cb277c1971..08740f5afa 100644
--- a/include/internal/quic_port.h
+++ b/include/internal/quic_port.h
@@ -66,6 +66,20 @@ QUIC_PORT *ossl_quic_port_new(const QUIC_PORT_ARGS *args);
void ossl_quic_port_free(QUIC_PORT *port);
/*
+ * Operations
+ * ==========
+ */
+
+/* Create an outgoing channel using this port. */
+QUIC_CHANNEL *ossl_quic_port_create_outgoing(QUIC_PORT *port, SSL *tls);
+
+/*
+ * Create an incoming channel using this port. XXX for temporary TSERVER use
+ * only - will be removed.
+ */
+QUIC_CHANNEL *ossl_quic_port_create_incoming(QUIC_PORT *port, SSL *tls);
+
+/*
* Queries and Accessors
* =====================
*/