pub struct Server { /* private fields */ }Expand description
A tsnet.Server-shaped embedded Tailscale node, exposing the two surfaces the plain
[connect]-built Device does not: the dual-credential loopback and the LocalClient.
Construct it with the Go-tsnet.Server fields (all optional keyword arguments); the wrapped node
is built lazily on the first loopback / local_client
call. Fork config supersets beyond Go tsnet parity (exit nodes, forwarding) remain on
[connect]/Device; this is the Go-parity Server surface. Cleanup happens on garbage
collection (the loopback listeners and node shut down when the last reference drops).
Implementations§
Source§impl Server
impl Server
Sourcepub fn new(
hostname: Option<String>,
auth_key: Option<String>,
control_url: Option<String>,
ephemeral: bool,
dir: Option<String>,
tags: Option<Vec<String>>,
) -> Self
pub fn new( hostname: Option<String>, auth_key: Option<String>, control_url: Option<String>, ephemeral: bool, dir: Option<String>, tags: Option<Vec<String>>, ) -> Self
Create a new server (Go &tsnet.Server{Hostname, AuthKey, ControlURL, Ephemeral, Dir}).
All arguments are optional keyword arguments: hostname, auth_key, control_url,
ephemeral (default False, matching Go), dir (a state directory persisting this node’s
identity keys across runs; None gives a fresh ephemeral in-memory identity), and tags
(ACL tags to advertise). No network I/O happens here — the node is built on first use.
Sourcepub fn loopback<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
pub fn loopback<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
Start (once) the loopback surface and return (socks_addr, proxy_cred, localapi_addr, localapi_cred) (Go Loopback() (addr, proxyCred, localAPICred, err)).
socks_addr is the SOCKS5 proxy’s bound 127.0.0.1:port (password proxy_cred, username
tsnet); localapi_addr is the in-process LocalAPI HTTP server’s bound 127.0.0.1:port
(HTTP Basic-auth password localapi_cred). Both listeners live for the server’s lifetime, so
repeated calls return the same addresses and credentials. Raises in TUN transport mode.
Sourcepub fn local_client<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
pub fn local_client<'p>(&self, py: Python<'p>) -> PyResult<Bound<'p, PyAny>>
A LocalClient for this node’s in-process LocalAPI HTTP server (Go
tsnet.Server.LocalClient()), starting the loopback surface if needed.
Trait Implementations§
impl DerefToPyAny for Server
impl ExtractPyClassWithClone for Server
Source§impl<'py> IntoPyObject<'py> for Server
impl<'py> IntoPyObject<'py> for Server
Source§type Output = Bound<'py, <Server as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <Server as IntoPyObject<'py>>::Target>
Source§fn into_pyobject(
self,
py: Python<'py>,
) -> Result<<Self as IntoPyObject<'_>>::Output, <Self as IntoPyObject<'_>>::Error>
fn into_pyobject( self, py: Python<'py>, ) -> Result<<Self as IntoPyObject<'_>>::Output, <Self as IntoPyObject<'_>>::Error>
Source§impl PyClassImpl for Server
impl PyClassImpl for Server
Source§const IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
Source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
Source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
Source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
Source§const IS_IMMUTABLE_TYPE: bool = false
const IS_IMMUTABLE_TYPE: bool = false
Source§const RAW_DOC: &'static CStr = /// A `tsnet.Server`-shaped embedded Tailscale node, exposing the two surfaces the plain
/// [`connect`]-built [`Device`] does not: the **dual-credential loopback** and the **LocalClient**.
///
/// Construct it with the Go-`tsnet.Server` fields (all optional keyword arguments); the wrapped node
/// is built lazily on the first [`loopback`][Self::loopback] / [`local_client`][Self::local_client]
/// call. Fork config supersets beyond Go `tsnet` parity (exit nodes, forwarding) remain on
/// [`connect`]/[`Device`]; this is the Go-parity `Server` surface. Cleanup happens on garbage
/// collection (the loopback listeners and node shut down when the last reference drops).
const RAW_DOC: &'static CStr = /// A `tsnet.Server`-shaped embedded Tailscale node, exposing the two surfaces the plain /// [`connect`]-built [`Device`] does not: the **dual-credential loopback** and the **LocalClient**. /// /// Construct it with the Go-`tsnet.Server` fields (all optional keyword arguments); the wrapped node /// is built lazily on the first [`loopback`][Self::loopback] / [`local_client`][Self::local_client] /// call. Fork config supersets beyond Go `tsnet` parity (exit nodes, forwarding) remain on /// [`connect`]/[`Device`]; this is the Go-parity `Server` surface. Cleanup happens on garbage /// collection (the loopback listeners and node shut down when the last reference drops).
Source§const DOC: &'static CStr
const DOC: &'static CStr
text_signature if a constructor is defined. Read moreSource§type Layout = <<Server as PyClassImpl>::BaseNativeType as PyClassBaseType>::Layout<Server>
type Layout = <<Server as PyClassImpl>::BaseNativeType as PyClassBaseType>::Layout<Server>
Source§type ThreadChecker = NoopThreadChecker
type ThreadChecker = NoopThreadChecker
Source§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::ImmutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::ImmutableChild
Source§type BaseNativeType = PyAny
type BaseNativeType = PyAny
PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
Source§fn dict_offset() -> Option<PyObjectOffset>
fn dict_offset() -> Option<PyObjectOffset>
Source§fn weaklist_offset() -> Option<PyObjectOffset>
fn weaklist_offset() -> Option<PyObjectOffset>
Source§impl PyClassNewTextSignature for Server
impl PyClassNewTextSignature for Server
const TEXT_SIGNATURE: &'static str = "(*, hostname=None, auth_key=None, control_url=None, ephemeral=False, dir=None, tags=None)"
Source§impl PyMethods<Server> for PyClassImplCollector<Server>
impl PyMethods<Server> for PyClassImplCollector<Server>
fn py_methods(self) -> &'static PyClassItems
Source§impl PyTypeInfo for Server
impl PyTypeInfo for Server
Source§const NAME: &str = <Self as ::pyo3::PyClass>::NAME
const NAME: &str = <Self as ::pyo3::PyClass>::NAME
prefer using ::type_object(py).name() to get the correct runtime value
Source§const MODULE: Option<&str> = <Self as ::pyo3::impl_::pyclass::PyClassImpl>::MODULE
const MODULE: Option<&str> = <Self as ::pyo3::impl_::pyclass::PyClassImpl>::MODULE
prefer using ::type_object(py).module() to get the correct runtime value
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Source§fn type_object(py: Python<'_>) -> Bound<'_, PyType>
fn type_object(py: Python<'_>) -> Bound<'_, PyType>
Auto Trait Implementations§
impl !RefUnwindSafe for Server
impl !UnwindSafe for Server
impl Freeze for Server
impl Send for Server
impl Sync for Server
impl Unpin for Server
impl UnsafeUnpin for Server
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<A, T> DynMessage<A> for T
impl<A, T> DynMessage<A> for T
Source§fn handle_dyn<'a>(
self: Box<T>,
state: &'a mut A,
actor_ref: ActorRef<A>,
tx: Option<Sender<Result<Box<dyn Any + Send>, SendError<Box<dyn Any + Send>, Box<dyn Any + Send>>>>>,
stop: &'a mut bool,
) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn ReplyError>>> + Send + 'a>>
fn handle_dyn<'a>( self: Box<T>, state: &'a mut A, actor_ref: ActorRef<A>, tx: Option<Sender<Result<Box<dyn Any + Send>, SendError<Box<dyn Any + Send>, Box<dyn Any + Send>>>>>, stop: &'a mut bool, ) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn ReplyError>>> + Send + 'a>>
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
self into an owned Python object, dropping type information.