All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scodec.protocols.ip.Port.scala Maven / Gradle / Ivy

The newest version!
package scodec.protocols
package ip

import scodec.Codec
import scodec.codecs._

case class Port(value: Int) {
  require(value >= Port.MinValue && value <= Port.MaxValue)
  override def toString = value.toString
}

object Port {
  val MinValue = 0
  val MaxValue = 65535

  implicit val codec: Codec[Port] = uint16.xmap(Port.apply, _.value)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy