Skip to content

Commit dccee97

Browse files
committed
NoDelay docs, copyright, remove project status
1 parent 2e5861d commit dccee97

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

readme.markdown

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Fleck ![project-status](http://stillmaintained.com/statianzo/Fleck.png?1)
1+
Fleck
22
===
33

44
Fleck is a WebSocket server implementation in C#. Branched from the
@@ -94,12 +94,26 @@ FleckLog.LogAction = (level, message, ex) => {
9494

9595
```
9696

97+
Disable Nagle's Algorithm
98+
---
99+
100+
Set `NoDelay` to `true` on the `WebSocketConnection.ListenerSocket`
101+
102+
```cs
103+
var server = new WebSocketServer("ws://0.0.0.0:8181");
104+
server.ListenerSocket.NoDelay = true;
105+
server.Start(socket =>
106+
{
107+
//Child connections will not use Nagle's Algorithm
108+
});
109+
```
110+
97111
License
98112
---
99113

100114
The MIT License
101115

102-
Copyright (c) 2010-2014 Jason Staten
116+
Copyright (c) 2010-2016 Jason Staten
103117

104118
Permission is hereby granted, free of charge, to any person obtaining a copy
105119
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)