forked from shack2/SNETCracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServer.cs
More file actions
30 lines (29 loc) · 835 Bytes
/
Server.cs
File metadata and controls
30 lines (29 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using MyRDP;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace SNETCracker.Model
{
public class Server
{
public long id = 0;
public bool isSuccess = false;
public string banner = "";
public string ip = "";
public string serverName = "";
public int port = 0;
public string username = "";
public string password = "";
public Boolean isDisConnected = false;
public int timeout = 10;
public AutoResetEvent isEndMRE = new AutoResetEvent(false);
public Boolean isConnected = false;
public RdpClient client = null;
public long userTime = 0;
public TabPage tp = null;
public TabControl tc = null;
}
}