Lines Matching full:http
1 .. zephyr:code-sample:: socket-dumb-http-server-mt
2 :name: Dumb HTTP server (multi-threaded)
5 Implement a simple HTTP server supporting simultaneous connections using BSD sockets.
11 skeleton HTTP server using a BSD Sockets compatible API.
12 This sample has similar functionality as :zephyr:code-sample:`socket-dumb-http-server`
15 This HTTP server example is very minimal and does not really parse an incoming
16 HTTP request, just reads and discards it, and always serves a single static
42 browser: http://192.0.2.1:8080/ or http://[2001:db8::1]:8080/
50 $ curl http://192.0.2.1:8080/
52 Finally, you can run an HTTP profiling/load tool like Apache Bench
55 $ ab -n10 http://192.0.2.1:8080/
57 ``-n`` parameter specifies the number of HTTP requests to issue against