SendHello sends HELLO message to zebra daemon.
()
| 1558 | |
| 1559 | // SendHello sends HELLO message to zebra daemon. |
| 1560 | func (c *Client) SendHello() { |
| 1561 | if c.redistDefault > 0 { |
| 1562 | body := &HelloBody{ |
| 1563 | redistDefault: c.redistDefault, |
| 1564 | instance: 0, |
| 1565 | } |
| 1566 | c.sendCommand(Hello, DefaultVrf, body) |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | // SendRouterIDAdd sends ROUTER_ID_ADD message to zebra daemon. |
| 1571 | func (c *Client) SendRouterIDAdd() { |
no test coverage detected