摘要:
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 阅读全文
摘要:
//托管内存中的数据 复制到非托管内存中 IntPtr ptrURL = Marshal.StringToHGlobalAnsi("123465"); //释放在非托管中分配的内存 Marshal.FreeHGlobal(ptrURL); NET_DVR_StartRemoteConfig(0,0, 阅读全文
摘要:
//定义一个委托 public delegate void RemoteConfigCallback(uint dwType, IntPtr lpBuffer, uint dwBufLen, IntPtr pUserData); //定义一个函数 private void ProcessUserIn 阅读全文