Searched refs:infolen (Results 1 – 1 of 1) sorted by relevance
138 private TcpInfo(@NonNull ByteBuffer bytes, int infolen) { in TcpInfo() argument141 if (SEGS_IN_OFFSET + Field.SEGS_IN.size > infolen) { in TcpInfo()142 throw new IllegalArgumentException("Length " + infolen + " is less than required."); in TcpInfo()151 bytes.position(Math.min(infolen + start, bytes.limit())); in TcpInfo()163 public static TcpInfo parse(@NonNull ByteBuffer bytes, int infolen) { in parse() argument165 return new TcpInfo(bytes, infolen); in parse()