Wick.Protocol.Response.Dirent (wick v0.1.0)

Copy Markdown View Source

A single directory entry for READDIR. On the wire this is a 24-byte header (ino, off, namelen, type) followed by the name bytes (no NUL) and 0–7 zero bytes of padding so each record ends on an 8-byte boundary.

Summary

Types

t()

@type t() :: %Wick.Protocol.Response.Dirent{
  ino: non_neg_integer(),
  name: String.t(),
  off: non_neg_integer(),
  type: non_neg_integer()
}