]> Git Repo - u-boot.git/blob - include/net-lwip.h
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-sh
[u-boot.git] / include / net-lwip.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2
3 #ifndef __NET_LWIP_H__
4 #define __NET_LWIP_H__
5
6 #include <lwip/ip4.h>
7 #include <lwip/netif.h>
8
9 enum proto_t {
10         TFTPGET
11 };
12
13 void net_lwip_set_current(void);
14 struct netif *net_lwip_new_netif(struct udevice *udev);
15 struct netif *net_lwip_new_netif_noip(struct udevice *udev);
16 void net_lwip_remove_netif(struct netif *netif);
17 struct netif *net_lwip_get_netif(void);
18 int net_lwip_rx(struct udevice *udev, struct netif *netif);
19
20 /**
21  * wget_validate_uri() - varidate the uri
22  *
23  * @uri:        uri string of target file of wget
24  * Return:      true if uri is valid, false if uri is invalid
25  */
26 bool wget_validate_uri(char *uri);
27
28 int do_dhcp(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
29 int do_dns(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
30 int do_ping(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
31 int do_wget(struct cmd_tbl *cmdtp, int flag, int argc, char * const argv[]);
32
33 #endif /* __NET_LWIP_H__ */
This page took 0.030607 seconds and 4 git commands to generate.