| 67 | } |
| 68 | |
| 69 | void ping(uint32_t ip) |
| 70 | { |
| 71 | debug_d("Ping IP: %s", IpAddress(ip).toString().c_str()); |
| 72 | pingOptions.ip = ip; |
| 73 | pingOptions.count = PING_COUNT; |
| 74 | pingOptions.recv_function = onReceived; |
| 75 | pingOptions.sent_function = onSent; |
| 76 | ping_start(&pingOptions); |
| 77 | } |
| 78 | |
| 79 | void connectOk(IpAddress ip, IpAddress mask, IpAddress gateway) |
| 80 | { |