mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 02:39:29 +08:00
39 lines
969 B
C#
39 lines
969 B
C#
// Licensed under the Apache License, Version 2.0 (the "License").
|
|
// You may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// https://github.com/FastTunnel/FastTunnel/edit/v2/LICENSE
|
|
// Copyright (c) 2019 Gui.H
|
|
|
|
namespace FastTunnel.Core.Models
|
|
{
|
|
public class ForwardConfig
|
|
{
|
|
/// <summary>
|
|
/// 局域网IP地址
|
|
/// </summary>
|
|
public string LocalIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 局域网ssh端口号
|
|
/// </summary>
|
|
public int LocalPort { get; set; } = 22;
|
|
|
|
/// <summary>
|
|
/// 服务端监听的端口号 1~65535
|
|
/// </summary>
|
|
public int RemotePort { get; set; }
|
|
|
|
/// <summary>
|
|
/// 协议,内网服务监听的协议
|
|
/// </summary>
|
|
public ProtocolEnum Protocol { get; set; }
|
|
}
|
|
|
|
public enum ProtocolEnum
|
|
{
|
|
TCP = 0,
|
|
|
|
UDP = 1,
|
|
}
|
|
}
|