Skip to content
Merged
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
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

100 changes: 100 additions & 0 deletions src/ipc/mitmproxy_ipc/mitmproxy_ipc.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
// @generated
// This file is @generated by prost-build.
// Note: The protobuf definition is shared between the Rust and Swift parts.
// We are not using prost-build because providing protoc is a hassle on many platforms.
// See .github/workflows/autofix.yml for how to update the respective files,
// or file a PR and let CI handle it.

/// Packet with associated tunnel info (Windows pipe to mitmproxy)
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct PacketWithMeta {
#[prost(bytes="bytes", tag="1")]
pub data: ::prost::bytes::Bytes,
#[prost(message, optional, tag="2")]
pub tunnel_info: ::core::option::Option<TunnelInfo>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct TunnelInfo {
#[prost(uint32, optional, tag="1")]
pub pid: ::core::option::Option<u32>,
#[prost(string, optional, tag="2")]
pub process_name: ::core::option::Option<::prost::alloc::string::String>,
}
/// Packet or intercept spec (Windows pipe to redirector)
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct FromProxy {
#[prost(oneof="from_proxy::Message", tags="1, 2")]
pub message: ::core::option::Option<from_proxy::Message>,
}
/// Nested message and enum types in `FromProxy`.
pub mod from_proxy {
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Oneof)]
pub enum Message {
#[prost(message, tag="1")]
Packet(super::Packet),
#[prost(message, tag="2")]
InterceptConf(super::InterceptConf),
}
}
/// Packet (macOS UDP Stream)
/// ⚠️ Bump network extension version on changes, <https://github.com/mitmproxy/mitmproxy_rs/pull/227.>
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Packet {
#[prost(bytes="bytes", tag="1")]
pub data: ::prost::bytes::Bytes,
}
/// Intercept conf (macOS Control Stream)
/// ⚠️ Bump network extension version on changes, <https://github.com/mitmproxy/mitmproxy_rs/pull/227.>
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct InterceptConf {
#[prost(string, repeated, tag="1")]
pub actions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// New flow (macOS TCP/UDP Stream)
/// ⚠️ Bump network extension version on changes, <https://github.com/mitmproxy/mitmproxy_rs/pull/227.>
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct NewFlow {
#[prost(oneof="new_flow::Message", tags="1, 2")]
pub message: ::core::option::Option<new_flow::Message>,
}
/// Nested message and enum types in `NewFlow`.
pub mod new_flow {
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Oneof)]
pub enum Message {
#[prost(message, tag="1")]
Tcp(super::TcpFlow),
#[prost(message, tag="2")]
Udp(super::UdpFlow),
}
}
/// ⚠️ Bump network extension version on changes, <https://github.com/mitmproxy/mitmproxy_rs/pull/227.>
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct TcpFlow {
#[prost(message, optional, tag="1")]
pub remote_address: ::core::option::Option<Address>,
#[prost(message, optional, tag="2")]
pub tunnel_info: ::core::option::Option<TunnelInfo>,
}
/// ⚠️ Bump network extension version on changes, <https://github.com/mitmproxy/mitmproxy_rs/pull/227.>
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct UdpFlow {
#[prost(message, optional, tag="1")]
pub local_address: ::core::option::Option<Address>,
#[prost(message, optional, tag="3")]
pub tunnel_info: ::core::option::Option<TunnelInfo>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct UdpPacket {
#[prost(bytes="bytes", tag="1")]
pub data: ::prost::bytes::Bytes,
#[prost(message, optional, tag="2")]
pub remote_address: ::core::option::Option<Address>,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct Address {
#[prost(string, tag="1")]
pub host: ::prost::alloc::string::String,
#[prost(uint32, tag="2")]
pub port: u32,
}
// @@protoc_insertion_point(module)
Loading