Skip to content

Commit 876161d

Browse files
committed
bump bufSize to 64K
1 parent 8b241fe commit 876161d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

conn.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import (
88
)
99

1010
const (
11-
bufSize = 4096 // Size of read and write buffers.
11+
// bufSize is the size of read and write buffers.
12+
// SuperCollider synthdef messages can easily have as much as 64K of data.
13+
bufSize = 65536
1214
)
1315

1416
// Common errors.

0 commit comments

Comments
 (0)