예제 #1
0
파일: IMService.cs 프로젝트: nandub/DeOps
        public void SetTTL(ushort client, int ttl)
        {
            if (!TTL.ContainsKey(client))
            {
                TTL[client] = new BoxInt();
            }

            TTL[client].Value = ttl;
        }
예제 #2
0
        public void SetTTL(ushort client, int ttl)
        {
            if (!TTL.ContainsKey(client))
                TTL[client] = new BoxInt();

            TTL[client].Value = ttl;
        }