macaddr-range

Synopsis

(macaddr-range macaddr-start macaddr-end)

Parameters

  • macaddr-start
  • macaddr-end

Description

This procedure creates an MAC address range of the specified interval. The start MAC address is required to be less or equal than the end MAC address.

Side Effects

Return Value

#t or #f

Example

> (macaddr-range '11:22:33:44:55:66 '11:22:33:44:55:67)
11:22:33:44:55:66-11:22:33:44:55:67
> (macaddr-range? (macaddr-range '11:22:33:44:55:66 '11:22:33:44:55:67))
#t
>