| 101 | } |
| 102 | |
| 103 | static bool handle_pingreq(acl::mqtt_client& conn) { |
| 104 | acl::mqtt_pingresp pingresp; |
| 105 | if (conn.send(pingresp)) { |
| 106 | return true; |
| 107 | } |
| 108 | printf("%s => send pingresp error\r\n", __FUNCTION__); |
| 109 | return false; |
| 110 | } |
| 111 | |
| 112 | static bool handle_pingresp(void) { |
| 113 | printf("%s => got pingresp\r\n", __FUNCTION__); |
no test coverage detected
searching dependent graphs…