c# Programming Glossary: protocoltype.ip
Create “Hello Wold” WebSocket example http://stackoverflow.com/questions/10200910/create-hello-wold-websocket-example new Socket AddressFamily.InterNetwork SocketType.Stream ProtocolType.IP static private string guid 258EAFA5 E914 47DA 95CA C5AB0DC85B11.. new Socket AddressFamily.InterNetwork SocketType.Stream ProtocolType.IP serverSocket.Bind new IPEndPoint IPAddress.Any 8080 serverSocket.Listen..
an attempt was made to access a socket in a way forbbiden by it's access permissions. why? http://stackoverflow.com/questions/10461257/an-attempt-was-made-to-access-a-socket-in-a-way-forbbiden-by-its-access-permiss new Socket AddressFamily.InterNetwork SocketType.Raw ProtocolType.IP HERE IS RAISED THE EXCEPTION _mSocket.Bind new IPEndPoint IPAddress.Parse..
Http Monitor in C# http://stackoverflow.com/questions/11392250/http-monitor-in-c-sharp s new Socket AddressFamily.InterNetwork SocketType.Raw ProtocolType.IP s.Bind new IPEndPoint IPAddress.Parse 127.0.0.1 80 s.IOControl.. s new Socket AddressFamily.InterNetwork SocketType.Raw ProtocolType.IP s.Bind new IPEndPoint IPAddress.Broadcast 80 s.IOControl IOControlCode.ReceiveAll..
Websocket server: onopen function on the web socket is never called http://stackoverflow.com/questions/2211898/websocket-server-onopen-function-on-the-web-socket-is-never-called new Socket AddressFamily.InterNetwork SocketType.Stream ProtocolType.IP IPEndPoint ep new IPEndPoint IPAddress.Parse 127.0.0.1 8181..
Send TCP packet in C# http://stackoverflow.com/questions/4399473/send-tcp-packet-in-c-sharp sock new Socket AddressFamily.InterNetwork SocketType.Raw ProtocolType.IP TcpPacket tcpPacket new TcpPacket fill tcpPacket with data sock.Bind..
C# Raw Sockets Port Forwarding http://stackoverflow.com/questions/567954/c-sharp-raw-sockets-port-forwarding sock new Socket AddressFamily.InterNetwork SocketType.Raw ProtocolType.IP sock.Bind new IPEndPoint IPAddress.Parse 10.25.2.148 0 sock.SetSocketOption..
|