Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
syntax = "proto3";

package envoy.extensions.network.socket_interface.v3;

import "udpa/annotations/status.proto";

option java_package = "io.envoyproxy.envoy.extensions.network.socket_interface.v3";
option java_outer_classname = "IoUringSocketInterfaceProto";
option java_multiple_files = true;
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/network/socket_interface/v3;socket_interfacev3";
option (udpa.annotations.file_status).package_version_status = ACTIVE;

// [#protodoc-title: io_uring Socket Interface configuration]

// Configuration for io_uring socket interface that relies on OS dependent syscall to create
// sockets.
message IoUringSocketInterface {
}
3 changes: 3 additions & 0 deletions source/common/network/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,13 @@ envoy_cc_library(
name = "default_socket_interface_lib",
srcs = [
"io_socket_handle_impl.cc",
"io_uring_socket_handle_impl.cc",
"socket_interface_impl.cc",
"win32_socket_handle_impl.cc",
],
hdrs = [
"io_socket_handle_impl.h",
"io_uring_socket_handle_impl.h",
"socket_interface_impl.h",
"win32_socket_handle_impl.h",
],
Expand All @@ -251,6 +253,7 @@ envoy_cc_library(
"//source/common/api:os_sys_calls_lib",
"//source/common/buffer:buffer_lib",
"//source/common/event:dispatcher_includes",
"//source/common/io:io_uring_impl_lib",
"@envoy_api//envoy/extensions/network/socket_interface/v3:pkg_cc_proto",
],
)
Expand Down
Loading