Difference between revisions of "Protocols"

From Chessprogramming wiki
Jump to: navigation, search
Line 45: Line 45:
 
* [https://en.wikipedia.org/wiki/Protocol Protocol from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Protocol Protocol from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Communications_protocol Communication protocol from Wikipedia]
 
* [https://en.wikipedia.org/wiki/Communications_protocol Communication protocol from Wikipedia]
* [http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:gui_protocol_support_list GUI Protocol List]] from [http://computer-chess.org/doku.php?id=home Computer-Chess Wiki] by [[Ron Murawski]]
+
* [http://computer-chess.org/doku.php?id=computer_chess:wiki:lists:gui_protocol_support_list GUI Protocol List] from [http://computer-chess.org/doku.php?id=home Computer-Chess Wiki] by [[Ron Murawski]]
 
==Layers and Protocols==  
 
==Layers and Protocols==  
 
* [https://en.wikipedia.org/wiki/OSI_model OSI model from Wikipedia]
 
* [https://en.wikipedia.org/wiki/OSI_model OSI model from Wikipedia]

Revision as of 12:07, 26 February 2021

Home * Protocols

A Protocol is a formal description of digital message formats and the rules for exchanging those messages in or between computing systems. A protocol describes the syntax, semantics, and synchronization of communication. The nature of the communication, the actual data exchanged and any state-dependent behaviors are defined by a protocol specification, the rules can be expressed by algorithms and data structures.

Computer Chess Protocols

The aim of computer chess protocols is to define a standard to let a chess engine communicate with user- or graphical user interfaces (GUI), including a game- or match controller to let engines play automatically on a computer, inside a computer network or over the internet. Chess engines, usually instantiated as child process of the GUI application, use standard streams or pipelines to receive and respond ASCII strings as messages.

See also

Publications

Forum Posts

2000 ...

2005 ...

Re: Extensible Chess Interface (XCI) : updated draft by Lance Perkins, CCC, March 14, 2005

2010 ...

2015 ...

External Links

Layers and Protocols

Hypertext Transfer Protocol (HTTP) from Wikipedia
File Transfer Protocol (FTP) from Wikipedia
Post Office Protocol (POP) from Wikipedia
Internet Message Access Protocol (IMAP) from Wikipedia
Transmission Control Protocol (TCP) from Wikipedia
User Datagram Protocol (UDP) from Wikipedia
Internet Protocol (IP) from Wikipedia
Internet Control Message Protocol (ICMP) from Wikipedia
Point-to-Point Protocol from Wikipedia

Related Standards

Misc

featuring Andy Timmons, Everette Harp, Steve Weingart, Del Atkins

Up one Level