Lines Matching full:http
1 .. zephyr:code-sample:: socket-dumb-http-server
2 :name: Dumb HTTP server
5 Implement a simple, portable, HTTP server using BSD sockets.
11 skeleton HTTP server using a BSD Sockets compatible API. The purpose of
13 portable to both POSIX and Zephyr. As such, this HTTP server example is
14 kept very minimal and does not really parse an incoming HTTP request,
18 perform performance/regression testing using existing HTTP diagnostic
43 browser: http://192.0.2.1:8080/ . You should see a page with a sample
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
79 To test, connect to http://127.0.0.1:8080/ , and follow the steps in the