10 Networking
10.1 Network Addresses
(require scramble/net/addr) | package: scramble-lib |
Added in version 0.4 of package scramble-lib.
10.1.1 IPv4 Addresses
struct
number : ip4-number?
The ip4 constructor can be given any ip4-in/c value, but the address is converted to a 32-bit unsigned integer for storage.
Instances of the ip4 structure use the string form of address for printing.
value
= (or/c ip4? ip4-number? ip4-bytes? ip4-string? ip4-list?)
procedure
(ip4-number? v) → boolean?
v : any/c
procedure
(ip4-bytes? v) → boolean?
v : any/c
procedure
(ip4-string? v) → boolean?
v : any/c
> (ip4-string? "127.0.0.1") #t
> (ip4-string? "12.34.56.789") ; last component out of range #f
> (ip4-string? "11.22.3.4.56") ; too many components #f
> (ip4-list? '(127 0 0 1)) #t
procedure
(ip4->number addr) → ip4-number?
addr : ip4-in/c
procedure
(ip4->bytes addr) → ip4-bytes?
addr : ip4-in/c
procedure
(ip4->string addr) → ip4-string?
addr : ip4-in/c
procedure
(ip4->list addr) → ip4-list
addr : ip4-in/c
> (ip4->number '(127 0 0 1)) 2130706433
> (ip4->bytes '(127 0 0 1)) #"\177\0\0\1"
> (ip4->string (ip4 '(11 22 33 44))) "11.22.33.44"
> (ip4->list #x7F000001) '(127 0 0 1)
procedure
(string->ip4 address-string) → (or/c ip4? #f)
address-string : string?
struct
address : ip4-number? prefix : (integer-in 0 32)
Like ip4, the address field is stored as an integer but can be given to the constructor in any ip4-in/c form. The constructor automatically clears the bits of address after the first prefix bits.
> (cidr4 "11.22.0.0" 16) (cidr4 "11.22.0.0" 16)
> (cidr4 "11.22.33.44" 16) ; low bits cleared (cidr4 "11.22.0.0" 16)
> (cidr4 '(255 0 0 1) 4) ; low bits cleared (cidr4 "240.0.0.0" 4)
procedure
(cidr4-contains? cidr addr) → boolean?
cidr : cidr4? addr : ip4-in/c
> (cidr4-contains? (cidr4 "11.22.0.0" 16) "11.22.33.44") #t
> (cidr4-contains? (cidr4 "11.22.0.0" 16) "11.34.5.6") #f
procedure
(cidr4-range cidr) →
ip4-number? ip4-number? cidr : cidr4
> (cidr4-range (cidr4 '(192 168 0 0) 16))
3232235520
3232301055
10.1.2 IPv6 Addresses
struct
number : ip6-number?
The ip6 constructor can be given any ip6-in/c value, but the address is converted to a 128-bit unsigned integer for storage.
Instances of the ip6 structure use the string form of address for printing.
> (ip6 #x260647003036000000000000681530eb) (ip6 "2606:4700:3036::6815:30eb")
> (ip6 '(9734 18176 12342 0 0 0 26645 12523)) (ip6 "2606:4700:3036::6815:30eb")
> (ip6 "2606:4700:3036::6815:30eb") (ip6 "2606:4700:3036::6815:30eb")
value
= (or/c ip6? ip6-number? ip6-bytes? ip6-string? ip6-list?)
procedure
(ip6-number? v) → boolean?
v : any/c
procedure
(ip6-bytes? v) → boolean?
v : any/c
procedure
(ip6-string? v) → boolean?
v : any/c
> (ip6-string? "::1") #t
> (ip6-string? "2606:4700:3036::6815:30eb") #t
> (ip6-string? "2606:4700:3036:0:0:0:6815:30eb") #t
> (ip6-string? "::FFFF:11.22.33.44") #t
procedure
(ip6->number addr) → ip6-number?
addr : ip6-in/c
procedure
(ip6->bytes addr) → ip6-bytes?
addr : ip6-in/c
procedure
(ip6->string addr) → ip6-string?
addr : ip6-in/c
procedure
(ip6->list addr) → ip6-list
addr : ip6-in/c
> (ip6->number "2606:4700:3036::6815:30eb") 50543257686980433870399704799439565035
> (ip6->list "2606:4700:3036::6815:30eb") '(9734 18176 12342 0 0 0 26645 12523)
> (ip6->list "::FFFF:11.22.33.44") '(0 0 0 0 0 65535 2838 8492)
procedure
(string->ip6 address-string) → (or/c ip6? #f)
address-string : string?
struct
address : ip6-number? prefix : (integer-in 0 128)
Like ip6, the address field is stored as an integer but can be given to the constructor in any ip6-in/c form. The constructor automatically clears the bits of address after the first prefix bits.
> (cidr6 "FE80::" 10) (cidr6 "fe80::" 10)
procedure
(cidr6-contains? cidr addr) → boolean?
cidr : cidr6? addr : ip6-in/c
> (cidr6-contains? (cidr6 "FE80::" 10) "FE81:1234::5:67") #t
procedure
(cidr6-range cidr) →
ip6-number? ip6-number? cidr : cidr6
> (cidr6-range (cidr6 "FE80::" 10))
338288524927261089654018896841347694592
338288524927261089654018896841347695615