@@ -68,26 +68,17 @@ class WiFiClass
68
68
/* Change Ip configuration settings disabling the dhcp client
69
69
*
70
70
* param local_ip: Static ip configuration
71
- * param dns_server: Static DNS server configuration
71
+ * param gateway : Static gateway configuration
72
72
*/
73
- void config (IPAddress local_ip, IPAddress dns_server );
73
+ void config (IPAddress local_ip, IPAddress gateway );
74
74
75
75
/* Change Ip configuration settings disabling the dhcp client
76
76
*
77
77
* param local_ip: Static ip configuration
78
- * param dns_server: Static DNS server configuration
79
78
* param gateway: Static gateway configuration
79
+ * param subnet: Static Subnet mask
80
80
*/
81
- void config (IPAddress local_ip, IPAddress dns_server, IPAddress gateway);
82
-
83
- /* Change Ip configuration settings disabling the dhcp client
84
- *
85
- * param local_ip: Static ip configuration
86
- * param dns_server: Static DNS server configuration
87
- * param gateway: Static gateway configuration
88
- * param subnet: Static subnet mask configuration
89
- */
90
- void config (IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet);
81
+ void config (IPAddress local_ip, IPAddress gateway, IPAddress subnet);
91
82
92
83
/* Change DNS Ip configuration
93
84
*
0 commit comments