TelnetNegotiationCore 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TelnetNegotiationCore --version 1.0.0
NuGet\Install-Package TelnetNegotiationCore -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TelnetNegotiationCore" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TelnetNegotiationCore --version 1.0.0
#r "nuget: TelnetNegotiationCore, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TelnetNegotiationCore as a Cake Addin
#addin nuget:?package=TelnetNegotiationCore&version=1.0.0

// Install TelnetNegotiationCore as a Cake Tool
#tool nuget:?package=TelnetNegotiationCore&version=1.0.0

Telnet Negotiation Core

Summary

This project is intended to be a library that implements basic telnet functionality. This is done with an eye on MUDs at this time, but may improve to support more terminal capabilities as time permits.

At this time, this repository is in a rough state and does not yet implement some common modern code standards.

Support

RFC Description Supported Comments
http://www.faqs.org/rfcs/rfc855.html Telnet Option Specification Full
http://www.faqs.org/rfcs/rfc858.html Suppress GOAHEAD Negotiation Full Untested
http://www.faqs.org/rfcs/rfc1091.html Terminal Type Negotiation Full
https://tintin.mudhalla.net/protocols/mtts MTTS Negotiation (Extends TTYPE) Full
http://www.faqs.org/rfcs/rfc885.html End Of Record Negotiation Full Untested
https://tintin.mudhalla.net/protocols/eor End Of Record Negotiation Full Untested
http://www.faqs.org/rfcs/rfc1073.html Window Size Negotiation (NAWS) Full
http://www.faqs.org/rfcs/rfc2066.html Charset Negotiation Partial No TTABLE support
https://tintin.mudhalla.net/protocols/mssp MSSP Negotiation (Extents 855) Full Untested
http://www.faqs.org/rfcs/rfc1572.html New Environment Negotiation No Planned
https://tintin.mudhalla.net/protocols/mnes Mud New Environment Negotiation No Planned
https://tintin.mudhalla.net/protocols/msdp Mud Server Data Protocol No Planned
https://tintin.mudhalla.net/rfc/rfc1950/ ZLIB Compression No Planned
https://tintin.mudhalla.net/protocols/mccp Mud Client Compression Protocol No Planned
https://tintin.mudhalla.net/protocols/gmcp Generic Mud Communication Protocol Partial MSDP Planned
https://tintin.mudhalla.net/protocols/mccp Mud Client Compression Protocol No Planned
http://www.faqs.org/rfcs/rfc857.html Echo Negotiation No Rejects
http://www.faqs.org/rfcs/rfc1079.html Terminal Speed Negotiation No Rejects
http://www.faqs.org/rfcs/rfc1372.html Flow Control Negotiation No Rejects
http://www.faqs.org/rfcs/rfc1184.html Line Mode Negotiation No Rejects
http://www.faqs.org/rfcs/rfc1096.html X-Display Negotiation No Rejects
http://www.faqs.org/rfcs/rfc1408.html Environment Negotiation No Rejects
http://www.faqs.org/rfcs/rfc2941.html Authentication Negotiation No Rejects
http://www.faqs.org/rfcs/rfc2946.html Encryption Negotiation No Rejects

ANSI Support, ETC?

Being a Telnet Negotiation Library, this library doesn't give support for extensions like ANSI, Pueblo, MXP, etc at this time.

Todo

  • Create a Changelog
  • Use Github Actions to create Nuget Package
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 210 3/19/2024
1.0.6 98 1/9/2024
1.0.4 89 1/9/2024
1.0.3 89 1/8/2024
1.0.2 100 1/7/2024
1.0.1 95 1/4/2024
1.0.0 102 1/3/2024

# Change Log
All notable changes to this project will be documented in this file.

## [1.0.0] - 2024-01-03
 
Initial version.

### Added
- Initial support for RFC855 (TELOPT)
- Initial support for RFC858 (GOAHEAD)
- Initial support for RFC1091 (TTERM)
- Initial support for MTTS
- Initial support for RFC885 (EOR)
- Initial support for RFC1073 (NAWS)
- Initial support for RFC2066 (CHARSET)
- Initial support for MSSP
- Initial support for GMCP