A minimal TCP/IP proxy implementation with F# asynchronous workflows
24 people like thisPosted: 13 years ago by Ademar Gonzalez
Basic (but experimental) TCP stream wrappers to help make TCP more abstracted and cleaner. Giving the user just the impression of a 'stream' that one connects to and sends and receives. This helps promote composition. The first abstraction is 'stream', really just wrapping .NET stream functions so that read returns the read n bytes and write returns the stream, all functions take NetworkStream as the first parameters, followed by other parameters. Currently we don't care about timeouts, exceptions, or other nasty's.
5 people like thisPosted: 11 years ago by David Klein
Async extensions for Socket. This extensions use SocketAsyncEventArgs, not Begin / End pattern.
2 people like thisPosted: 9 years ago by sayuri
Get local IPv4-address of the computer
1 people like thisPosted: 8 years ago by Tuomas Hietanen
An asynchronous SNTP client that can retrieve the current time from an internet time server (such as time-a.nist.gov) and optionally update the local system clock to match. Demonstrates async UDP communication, bit-shifting, and native interop/PInvoke.
13 people like thisPosted: 13 years ago by Joel Mueller
Quick function to take a wireshark 'C Structure' and turn it into a F# byte array
3 people like thisPosted: 11 years ago by David Klein
Barebone Reactive Extensions web server demo.
7 people like thisPosted: 9 years ago by Giacomo Stelluti Scala