Fast and memory efficient low-level networking ============================================== The network-bytestring library provides faster and more memory efficient low-level socket functions, using `ByteString`s, than those in the `network` library. Contributing ------------ ### Prerequisites Make sure you read the [Haskell Style Guide] [1]. The existing code doesn't follow the style guide fully but you should follow it for all new code. ### Creating patches The preferred way of contributing changes to the project is to use Git and send the patches over email using the Git commands `format-patch` and `send-email`. Step by step instructions: Clone the repository: git clone http://github.com/tibbe/network-bytestring Make your changes: cd network-bytestring $EDITOR Commit your changes in one or more commits: git add git commit Make sure you write a good commit message. Commit messages should contain a short summary on a separate line and, if needed, a more thorough explanation of the change. Write full sentences and use proper spelling, punctuation, and grammar. You might want to use `git rebase` to make sure your commits correspond to nice, logical commits. Make sure whitespace only changes are kept in separate commits to ease reviewing. Prepare the e.g. last five patches for sending: git format-patch -5 -n This will create one patch file per patch. git send-email --to The maintainer is specified in the Cabal file. The maintainer will review your changes and may ask you to make changes to them. Make the changes to your local repository and use `git rebase` to massage them into nice, logical commits and resend the patches. [1]: http://github.com/tibbe/haskell-style-guide