12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CommonNetwork_ICE.Util
- {
-
-
-
- public class Env
- {
-
- public static String ICE_SEND_REMOTE_IP = "127.0.0.1";
-
- public static int ICE_SEND_REMOTE_PORT = 15000;
-
- public static String ICE_RECV_LOCAL_IP = "127.0.0.1";
-
- public static int ICE_RECV_LOCAL_PORT = 40000;
-
- public static int SEND_WAIT_ACK_TIME_OUT = 5;
-
- public static int SEND_WAIT_ACT_THREAD_SLEEP_TIME = 100;
-
- public static int MSG_SEND_REPEAT_TIMES = 3;
-
- public static int CLIENT_CONNECT_WAIT_TIME = 1000;
-
- public static int SEND_MSG_ACK_CHECK_THREAD_CNT = 10;
-
- public static int ENV_ERR_CODE = 0;
-
-
- public static int SERVER_SESSION_EXPIRE_TIME = 60;
-
- public static int SERVER_SESSION_CHECK_INTERVAL = 10;
-
- public static int MSG_PROC_TIME_OUT = 10;
- }
- }
|