Example #1
0
        public static ReplyCmdHandle Instance(int currentFrame, int verify, byte[] data)
        {
            ReplyCmdHandle handle = new ReplyCmdHandle(null);

            handle.currentFrame = currentFrame;
            //handle.frameLength = frameLength;
            handle.verify = verify;
            handle.data   = data;
            return(handle);
        }
Example #2
0
 private void OnReplyCmdCallback(UdpPoint point, IPEndPoint remote, ReplyCmdHandle handle)
 {
     FinishRequest(point, handle);
 }