| 733 | } |
| 734 | |
| 735 | uint8_t* WiFiClass::APClientMacAddress(uint8_t* mac) |
| 736 | { |
| 737 | if (_mode == WL_AP_MODE) { |
| 738 | return remoteMacAddress(mac); |
| 739 | } else { |
| 740 | memset(mac, 0, 6); |
| 741 | return mac; |
| 742 | } |
| 743 | } |
| 744 | |
| 745 | uint8_t* WiFiClass::remoteMacAddress(uint8_t* remoteMacAddress) |
| 746 | { |
nothing calls this directly
no outgoing calls
no test coverage detected