Package

com.comcast

ip4s

Permalink

package ip4s

Source
package.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ip4s
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class AnySourceMulticastJoin[+A <: IpAddress](group: Multicast[A]) extends MulticastJoin[A] with Product with Serializable

    Permalink

    Multicast join to a group without a source filter.

  2. final class Cidr[+A <: IpAddress] extends Product with Serializable

    Permalink

    Classless Inter-Domain Routing address, which represents an IP address and its routing prefix.

  3. final class Hostname extends Ordered[Hostname]

    Permalink

    RFC1123 compliant hostname.

    RFC1123 compliant hostname.

    A hostname contains one or more labels, where each label consists of letters A-Z, a-z, digits 0-9, or a dash. A label may not start or end in a dash and may not exceed 63 characters in length. Labels are separated by periods and the overall hostname must not exceed 253 characters in length.

  4. final class IDN extends Ordered[IDN]

    Permalink

    Internationalized domain name, as specified by RFC3490 and RFC5891.

    Internationalized domain name, as specified by RFC3490 and RFC5891.

    This type models internationalized hostnames. An IDN provides unicode labels, a unicode string form, and an ASCII hostname form.

    A well formed IDN consists of one or more labels separated by dots. Each label may contain unicode characters as long as the converted ASCII form meets the requirements of RFC1123 (e.g., 63 or fewer characters and no leading or trailing dash). A dot is represented as an ASCII period or one of the unicode dots: full stop, ideographic full stop, fullwidth full stop, halfwidth ideographic full stop.

    The toString method returns the IDN in the form in which it was constructed. Sometimes it is useful to normalize the IDN -- converting all dots to an ASCII period and converting all labels to lowercase.

    Note: equality and comparison of IDNs is case-sensitive. Consider comparing normalized toString values for a more lenient notion of equality.

  5. sealed abstract class IpAddress extends IpAddressPlatform with Serializable

    Permalink

    Immutable and safe representation of an IP address, either V4 or V6.

    Immutable and safe representation of an IP address, either V4 or V6.

    Construction

    IpAddress instances are constructed in a few different ways: - via IpAddress("127.0.0.1"), which parses a string representation of the IP and returns an Option[IpAddress] - via IpAddress.fromBytes(arr), which returns an IP address if the supplied array is either exactly 4 bytes or exactly 16 bytes - via literal syntax like ip"127.0.0.1", which returns an IpAddress and fails to *compile* if the IP is invalid.

    Type Hierarchy

    There are two subtypes of IpAddress -- Ipv4Address and Ipv6Address. Each of these subtypes have a richer API than IpAddress and it is often useful to use those types directly, for example if your use case requires a V6 address. It is safe to pattern match on IpAddress to access Ipv4Address or Ipv6Address directly, or alternatively, you can use fold.

    JVM Specific API

    If using IpAddress on the JVM, you can call toInetAddress to convert the address to a java.net.InetAddress, for use with networking libraries. This method does not exist on the Scala.js version.

  6. implicit final class IpLiteralSyntax extends AnyVal

    Permalink
  7. final class Ipv4Address extends IpAddress with Ipv4AddressPlatform

    Permalink

    Representation of an IPv4 address that works on both the JVM and Scala.js.

  8. final class Ipv6Address extends IpAddress with Ipv6AddressPlatform

    Permalink

    Representation of an IPv6 address that works on both the JVM and Scala.js.

  9. sealed trait Multicast[+A <: IpAddress] extends Product with Serializable

    Permalink

    Witness that the wrapped address of type A is a multicast address.

    Witness that the wrapped address of type A is a multicast address.

    An instance of Multicast is typically created by either calling Multicast.apply or by using the asMulticast method on IpAddress.

  10. sealed abstract class MulticastJoin[+A <: IpAddress] extends Product with Serializable

    Permalink

    Represents a join of a multicast group.

    Represents a join of a multicast group.

    This is represented as an ADT consisting of two constructors, AnySourceMulticastJoin and SourceSpecificMulticastJoin. These constructors are provided as top level types to allow domain modeling where a specific join type is required. The address type is parameterized for a similar reason -- to allow domain modeling where a specific address type is required.

  11. final case class MulticastSocketAddress[J[+x <: IpAddress] <: MulticastJoin[x], +A <: IpAddress](join: J[A], port: Port) extends Product with Serializable

    Permalink

    A multicast join of the specified type and a port number.

    A multicast join of the specified type and a port number. Used to describe UDP join of a multicast group.

  12. final class Port extends Product with Serializable with Ordered[Port]

    Permalink

    TCP or UDP port number.

  13. final case class SocketAddress[+A <: IpAddress](ip: A, port: Port) extends SocketAddressPlatform[A] with Product with Serializable

    Permalink

    An IP address of the specified type and a port number.

    An IP address of the specified type and a port number. Used to describe the source or destination of a socket.

  14. sealed trait SourceSpecificMulticast[+A <: IpAddress] extends Multicast[A]

    Permalink

    Witnesses that the wrapped address of type A is a source specific multicast address.

    Witnesses that the wrapped address of type A is a source specific multicast address.

    An instance of SourceSpecificMulticast is typically created by either calling Multicast.apply or by using the asSourceSpecificMulticast method on IpAddress.

  15. final case class SourceSpecificMulticastJoin[+A <: IpAddress](source: A, group: SourceSpecificMulticast[A]) extends MulticastJoin[A] with Product with Serializable

    Permalink

    Multicast join to a group from the specified source.

Value Members

  1. object AnySourceMulticastJoin extends Serializable

    Permalink
  2. object Cidr extends Serializable

    Permalink
  3. object Hostname

    Permalink
  4. object IDN extends IDNCompanionPlatform

    Permalink
  5. object IpAddress extends Serializable

    Permalink
  6. object Ipv4Address extends Serializable

    Permalink
  7. object Ipv6Address extends Serializable

    Permalink
  8. object LiteralSyntaxMacros

    Permalink

    Macros that support literal string interpolators.

  9. object Multicast extends Serializable

    Permalink
  10. object MulticastJoin extends Serializable

    Permalink
  11. object MulticastSocketAddress extends Serializable

    Permalink
  12. object Port extends Serializable

    Permalink
  13. object SocketAddress extends Serializable

    Permalink
  14. object SourceSpecificMulticast extends Serializable

    Permalink
  15. object SourceSpecificMulticastJoin extends Serializable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped