Packages

Pure Elixir Tor client implementation

Current section

Files

Jump to
garlic lib garlic circuit stream.ex
Raw

lib/garlic/circuit/stream.ex

defmodule Garlic.Circuit.Stream do
@moduledoc false
defstruct window: 500,
from: nil
@type t() :: %__MODULE__{
window: integer,
from: GenServer.from()
}
@type id :: pos_integer
end