摘要: 1、使用端口过滤: tcp.port >=52330 and tcp.port<=52331 使用端口+ip过滤 tcp.port >=8000 and tcp.port<=8000 and ip.src==192.168.1.76 tcp.port >=8000 and tcp.port<=800 阅读全文
posted @ 2020-03-10 15:05 enych 阅读(216) 评论(0) 推荐(0) 编辑
摘要: //托管内存中的数据 复制到非托管内存中 IntPtr ptrURL = Marshal.StringToHGlobalAnsi("123465"); //释放在非托管中分配的内存 Marshal.FreeHGlobal(ptrURL); NET_DVR_StartRemoteConfig(0,0, 阅读全文
posted @ 2020-03-10 14:11 enych 阅读(796) 评论(0) 推荐(0) 编辑
摘要: //定义一个委托 public delegate void RemoteConfigCallback(uint dwType, IntPtr lpBuffer, uint dwBufLen, IntPtr pUserData); //定义一个函数 private void ProcessUserIn 阅读全文
posted @ 2020-03-10 11:56 enych 阅读(400) 评论(0) 推荐(0) 编辑