Skip to content

Instantly share code, notes, and snippets.

View msbukkuri's full-sized avatar

Maanas Bukkuri msbukkuri

View GitHub Profile
@msbukkuri
msbukkuri / gist:1228574
Created September 20, 2011 07:38
Partial Code - Socket Implemenation
public void Listen(int port)
{
var localIP = new IPEndPoint(IPAddress.Any, port);
_listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.IP);
_listener.Bind(localIP);
_listenerThread = new Thread(new ThreadStart(listenForClients));
_listenerThread.Start();
}
@msbukkuri
msbukkuri / gist:1226010
Created September 19, 2011 05:17
C# - Web Server (Old Implementation)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;
namespace MyFirstWebServer
{