Return the next available ifindex for BSD too
This commit is contained in:
parent
2fdff9d8d6
commit
ce12aa56d4
@ -47,6 +47,7 @@ _ifindex() {
|
|||||||
echo "${x#/dev/net}"
|
echo "${x#/dev/net}"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
i=$((${i} + 1))
|
||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
default)
|
default)
|
||||||
@ -59,6 +60,9 @@ _ifindex() {
|
|||||||
done
|
done
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# Return the next available index
|
||||||
|
echo "${i}"
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user