All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v18 0/3] add TCP and HTTP for downloading images
@ 2022-10-17  7:00 Ying-Chun Liu (PaulLiu)
  2022-10-17  7:00 ` [PATCH v18 1/3] net: Add TCP protocol Ying-Chun Liu (PaulLiu)
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Ying-Chun Liu (PaulLiu) @ 2022-10-17  7:00 UTC (permalink / raw)
  To: u-boot; +Cc: Ying-Chun Liu (PaulLiu)

This patch is a refresh from previous patches made by
Duncan Hare <DuncanCHare at yahoo.com>. I've contacted him and
continue to work on this patch.

This patch introduce a TCP stack with SACK. And a simple wget command
to download images from http server.

v1-v12: Made by Duncan, didn't tracked.
v13: Fix some issues which is reviewed by Christian
v14: Add options to enable/disable SACK.
v15: Fix various syntax errors reviewed by Michal.
     Remove magic numbers. Use kernel-doc format.
v16: Add more kernel-doc. Fix more double spaces.
v17: Fix wget with address timeout issue reported by Ramon.
v18: Add documentation for wget command.

Ying-Chun Liu (PaulLiu) (3):
  net: Add TCP protocol
  net: Add wget application
  doc: cmd: wget: add documentation

 cmd/Kconfig            |   7 +
 cmd/net.c              |  13 +
 doc/usage/cmd/wget.rst |  61 ++++
 doc/usage/index.rst    |   1 +
 include/net.h          |  38 ++-
 include/net/tcp.h      | 312 ++++++++++++++++++
 include/net/wget.h     |  22 ++
 net/Kconfig            |  16 +
 net/Makefile           |   2 +
 net/net.c              |  36 +++
 net/tcp.c              | 720 +++++++++++++++++++++++++++++++++++++++++
 net/wget.c             | 428 ++++++++++++++++++++++++
 12 files changed, 1646 insertions(+), 10 deletions(-)
 create mode 100644 doc/usage/cmd/wget.rst
 create mode 100644 include/net/tcp.h
 create mode 100644 include/net/wget.h
 create mode 100644 net/tcp.c
 create mode 100644 net/wget.c

-- 
2.35.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-17  7:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-17  7:00 [PATCH v18 0/3] add TCP and HTTP for downloading images Ying-Chun Liu (PaulLiu)
2022-10-17  7:00 ` [PATCH v18 1/3] net: Add TCP protocol Ying-Chun Liu (PaulLiu)
2022-10-17  7:00 ` [PATCH v18 2/3] net: Add wget application Ying-Chun Liu (PaulLiu)
2022-10-17  7:00 ` [PATCH v18 3/3] doc: cmd: wget: add documentation Ying-Chun Liu (PaulLiu)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.