Searched refs:tunp (Results 1 – 1 of 1) sorted by relevance
701 struct tuninfo *tunp; in tun_dev_ioctl() local710 tunp = (struct tuninfo *)data; in tun_dev_ioctl()711 if (tunp->mtu < ETHERMIN || tunp->mtu > TUNMRU) { in tun_dev_ioctl()715 if (tunp->type != sc->sc_if.if_type) { in tun_dev_ioctl()723 sc->sc_if.if_mtu = tunp->mtu; in tun_dev_ioctl()724 sc->sc_if.if_baudrate = tunp->baudrate; in tun_dev_ioctl()727 tunp = (struct tuninfo *)data; in tun_dev_ioctl()728 tunp->mtu = sc->sc_if.if_mtu; in tun_dev_ioctl()729 tunp->type = sc->sc_if.if_type; in tun_dev_ioctl()730 tunp->flags = sc->sc_if.if_flags & TUN_IFF_FLAGS; in tun_dev_ioctl()[all …]