Skip to content

Commit

Permalink
2024-08-15 17:00:44
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Aug 15, 2024
1 parent 835fe8f commit b25f352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocol/czar/mux.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func NewMux(conn net.Conn) *Mux {
// NewMuxServer returns a new MuxServer.
func NewMuxServer(conn net.Conn) *Mux {
mux := NewMux(conn)
for i := range len(mux.usb) {
for i := range 256 {
old := NewStream(uint8(i), mux)
old.ocp.Do(func() {})
old.ClosePositive()
Expand Down

0 comments on commit b25f352

Please sign in to comment.