Add link type constants

Julien LepillerMon Feb 01 01:02:10+0100 2021

409b5bb

Add link type constants

netlink/constant.scm

284284
  (RT_TABLE_DEFAULT 253)
285285
  (RT_TABLE_MAIN 254)
286286
  (RT_TABLE_LOCAL 255))
287+
288+
;; link type
289+
;; more at include/uapi/linux/if_arp.h
290+
(define-enum int->link-type
291+
  (ARPHRD_ETHER 1)
292+
  (ARPHRD_LOOPBACK 772))