Home
last modified time | relevance | path

Searched refs:TunnelMode (Results 1 – 6 of 6) sorted by relevance

/dports/net/clash/clash-1.6.0/tunnel/
H A Dmode.go9 type TunnelMode int type
13 ModeMapping = map[string]TunnelMode{
21 Global TunnelMode = iota
27 func (m *TunnelMode) UnmarshalJSON(data []byte) error {
39 func (m *TunnelMode) UnmarshalYAML(unmarshal func(interface{}) error) error {
51 func (m TunnelMode) MarshalJSON() ([]byte, error) {
56 func (m TunnelMode) MarshalYAML() (interface{}, error) {
60 func (m TunnelMode) String() string {
H A Dtunnel.go84 func Mode() TunnelMode {
89 func SetMode(m TunnelMode) { argument
/dports/net/liblinphone/linphone-3.12.0/java/common/org/linphone/core/
H A DLinphoneCore.java1688 enum TunnelMode { enum
1694 private TunnelMode(int value){ in TunnelMode() method in LinphoneCore.TunnelMode
1697 public static int enumToInt(TunnelMode enum_mode) { in enumToInt()
1700 public static TunnelMode intToEnum(int value) { in intToEnum()
1726 void tunnelSetMode(TunnelMode mode); in tunnelSetMode()
1732 TunnelMode tunnelGetMode(); in tunnelGetMode()
/dports/net/clash/clash-1.6.0/hub/route/
H A Dconfigs.go34 Mode *tunnel.TunnelMode `json:"mode"`
/dports/net/clash/clash-1.6.0/config/
H A Dconfig.go30 Mode T.TunnelMode `json:"mode"`
126 Mode T.TunnelMode `yaml:"mode"`
/dports/net/liblinphone/linphone-3.12.0/java/impl/org/linphone/core/
H A DLinphoneCoreImpl.java943 public synchronized void tunnelSetMode(LinphoneCore.TunnelMode mode) { in tunnelSetMode()
944 tunnelSetMode(nativePtr, TunnelMode.enumToInt(mode)); in tunnelSetMode()
949 public synchronized LinphoneCore.TunnelMode tunnelGetMode() { in tunnelGetMode()
950 return LinphoneCore.TunnelMode.intToEnum(tunnelGetMode(nativePtr)); in tunnelGetMode()