Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inkbytes/inkwe
Inkwe an open-source HTTP server for modern operating systems including UNIX and Windows
https://github.com/inkbytes/inkwe
c cgi cpp98 distributed http server
Last synced: 26 days ago
JSON representation
Inkwe an open-source HTTP server for modern operating systems including UNIX and Windows
- Host: GitHub
- URL: https://github.com/inkbytes/inkwe
- Owner: Inkbytes
- License: apache-2.0
- Created: 2021-09-11T15:49:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-10T18:10:19.000Z (over 2 years ago)
- Last Synced: 2024-10-12T16:01:54.661Z (26 days ago)
- Topics: c, cgi, cpp98, distributed, http, server
- Language: C++
- Homepage: https://inkwe.io
- Size: 13.9 MB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ink-webserv
Implementing HTTP(RFCs 7230 to 7235) protocol from scratch using C++# Introduction
The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems.
HTTP is the foundation of data communication for the World Wide Web, where hypertext documents include hyperlinks to other resources that the user can easily access, for example by a mouse click or by tapping the screen in a web browser.HTTP was developed to facilitate hypertext and the World Wide Web.
The primary function of a web server is to store, process, and deliver web pages to clients.
The communication between client and server takes place using the Hypertext Transfer
Protocol (HTTP).Pages delivered are most frequently HTML documents, which may include images,
style sheets, and scripts in addition to the text content. Multiple web servers may be used for a high-traffic website.A user agent, commonly a web browser or web crawler, initiates communication by
requesting a specific resource using HTTP and the server responds with the content of
that resource or an error message if unable to do so. The resource is typically a real file
on the server’s secondary storage, but this is not necessarily the case and depends on how
the webserver is implemented.
While the primary function is to serve content, full implementation of HTTP also includes ways of receiving content from clients. This feature is used for submitting web
forms, including the uploading of files.# InkWe
Inkwe is an implementation of HTTP(RFCs 7230 to 7235), with multiple web servers using polling system to manage all RAQs. Hence it's derived from the octopus god that has many tails.