Fix default options in route-add
ip/route.scm
| 111 | 111 | ||
| 112 | 112 | (define* (route-add dest | |
| 113 | 113 | #:key (ipv6? #f) (device #f) (table RT_TABLE_MAIN) | |
| 114 | - | (protocol #f) (scope RT_SCOPE_LINK) | |
| 114 | + | (protocol RTPROT_BOOT) (scope RT_SCOPE_UNIVERSE) | |
| 115 | 115 | (type RTN_UNICAST) (priority #f) (src #f) (via #f)) | |
| 116 | 116 | (define request-num (random 65535)) | |
| 117 | 117 |