| 440 | } |
| 441 | |
| 442 | static bool handle_set_billboard(struct subd *sd, const u8 *msg) |
| 443 | { |
| 444 | bool perm; |
| 445 | char *happenings; |
| 446 | |
| 447 | if (!fromwire_status_peer_billboard(msg, msg, &perm, &happenings)) |
| 448 | return false; |
| 449 | |
| 450 | sd->billboardcb(sd->channel, perm, happenings); |
| 451 | return true; |
| 452 | } |
| 453 | |
| 454 | static bool handle_version(struct subd *sd, const u8 *msg) |
| 455 | { |
no test coverage detected