add some links to READMEs
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2020-05-17 20:39:22 -04:00
parent a1e1922e62
commit 061d2629a3
Signed by: ben
GPG Key ID: 4E0AF802FFF7960C
3 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,9 @@
# IrcStates
# IRCStates
port of [jesopo/ircstates](https://github.com/jesopo/ircstates)
available on [nuget](https://www.nuget.org/packages/IRCStates)
bare bones irc client state
see the full example in [StatesSample/Client.cs](../Examples/States/Client.cs)
@ -44,9 +46,8 @@ see the full example in [StatesSample/Client.cs](../Examples/States/Client.cs)
{
while (_encoder.PendingBytes.Any())
{
var bytesSent = _socket.Send(_encoder.PendingBytes);
var sentLines = _encoder.Pop(bytesSent);
foreach (var line in sentLines) Console.WriteLine($"> {line.Format()}");
foreach (var line in _encoder.Pop(_socket.Send(_encoder.PendingBytes)))
Console.WriteLine($"> {line.Format()}");
}
var bytesReceived = _socket.Receive(_bytes);

View File

@ -3,6 +3,8 @@
this is a c\# port of jesopo's [irctokens](
https://github.com/jesopo/irctokens)
available on [nuget](https://www.nuget.org/packages/IRCTokens)
## usage
### tokenization

View File

@ -11,6 +11,8 @@ unless otherwise noted, this is mostly a port of jesopo's python libraries.
- [ircstates](https://github.com/jesopo/ircstates)
- [ircrobots](https://github.com/jesopo/ircrobots)
an [irctokens.org](https://irctokens.org) project
discussion and support on irc: [#irctokens](
https://web.tilde.chat/?join=irctokens)