Documentation

Std.Net.Addr

This module contains Lean representations of IP and socket addresses:

Representation of an IPv4 address.

  • octets : Vector UInt8 4

    This structure represents the address: octets[0].octets[1].octets[2].octets[3].

Instances For

Representation of an IPv6 address.

  • segments : Vector UInt16 8

    This structure represents the address: segments[0]:segments[1]:....

Instances For

The kinds of address families supported by Lean, currently only IP variants.

Instances For

Build the IPv4 address a.b.c.d.

Equations
@[extern lean_uv_pton_v4]

Try to parse s as an IPv4 address, returning none on failure.

@[extern lean_uv_ntop_v4]

Turn addr into a String in the usual IPv4 format.

def Std.Net.IPv6Addr.ofParts (a b c d e f g h : UInt16) :

Build the IPv6 address a:b:c:d:e:f:g:h.

Equations
@[extern lean_uv_pton_v6]

Try to parse s as an IPv6 address according to RFC 2373, returning none on failure.

@[extern lean_uv_ntop_v6]

Turn addr into a String in the IPv6 format described in RFC 2373.