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