Skip to content

davidsblog/dweb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 

Repository files navigation

dweb

A lightweight webserver for C programs, with no dependencies which should work on Linux, Unix, Mac OS, etc. I'm planning to use it as a very small Web API, most likely hosted on a Raspberry Pi or a cheap router running OpenWrt, probably both :-). I'm just trying to implement enough of the HTTP protocol to work with the main browsers, so if you're looking for a complete implementation of the HTTP protocol, then dweb is not what you want...

The idea is to be able to serve dynamic web content from simple C programs, without having to write much extra code. In fact, dweb is a single C source file, which is all you need to add to your project. So the trivial example (serving a static page) looks like this:

void test_response(struct hitArgs*, char*, char*, http_verb);

int main(int argc, char **argv)
{
	if (argc != 2 || !strcmp(argv[1], "-?"))
	{
		printf("hint: dweb [port number]\n");
		exit(0);
	}
	// start the server:
	dwebserver(atoi(argv[1]), &test_response, NULL);
}

// send the same response to any request
void test_response(struct hitArgs *args, char *path, char *request_body, http_verb type)
{
	ok_200(args, "\nContent-Type: text/html",
		"<html><head><title>Test Page</title></head>"
		"<body><h1>Testing...</h1>This is a test response.</body>"
		"</html>", path);
}

I owe a lot to nweb: http://www.ibm.com/developerworks/systems/library/es-nweb/index.html which was my starting point. But I am allowing extra things like HTTP POSTs and serving dynamic content. Unlike nweb, this code does not run as a daemon, and logging goes to the console by default, although you can override the logging function and do something else if you like.

Building

To build the example program, which uses jQuery, allows HTML Form values to be posted back, and gives dynamic responses, just type make and you can then run dweb from the command line (you need to specify the port number as the first parameter).

Alternatively, to just build the trivial example (as shown above) you can type make simple and then run simple from the command line.

Request Size

The maximum bytes read from the incoming request is set using the #define parameter MAX_INCOMING_REQUEST and this value includes the HTTP headers. The default is 4096 bytes. If you need to have requests bigger than this you will need to increase that value.

License

The MIT License (MIT)

Copyright (c) 2014-15 David's Blog - www.codehosting.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A lightweight webserver for C programs, which should work for Linux, Unix, Mac OS...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published