Lines Matching +full:tracking +full:- +full:time

1 .. zephyr:code-sample:: sockets-big-http-download
3 :relevant-api: bsd_sockets tls_credentials
12 the :zephyr:code-sample:`sockets-http-get` sample application, it downloads a file of
14 also performs download repeatedly, tracking the total number of bytes
24 - :ref:`networking_with_host`
25 - or, a board with hardware networking
26 - NAT/routing should be set up to allow connections to the Internet
27 - DNS server should be available on the host to resolve domain names
34 .. zephyr-app-commands::
35 :zephyr-app: samples/net/sockets/big_http_download
41 http://archive.ubuntu.com/ubuntu/dists/xenial/main/installer-amd64/current/images/hd-media/vmlinuz
45 Zephyr streams non-trivial amounts of data, while still taking a
46 reasonable amount of time to complete. While the file is downloaded, its
47 hash is computed (SHA-256 is used in the source code), and an error
52 of traffic over a longer time.
61 a file on a local server or a special-purpose testing server of your own
63 large-scale testing.
69 ``overlay-tls.conf`` overlay file enabled, for example, using these commands:
71 .. zephyr-app-commands::
72 :zephyr-app: samples/net/sockets/big_http_download
74 :conf: "prj.conf overlay-tls.conf"
78 An alternative way is to specify ``-DEXTRA_CONF_FILE=overlay-tls.conf`` when
82 https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/git/1:2.34.1-1ubuntu1/git_2.34.1.orig.ta…
89 Note, that TLS support in the sample depends on non-posix, TLS socket
101 .. code-block:: console
103 $ make -f Makefile.host
107 .. code-block:: console