10 lines
351 B
Go
10 lines
351 B
Go
package go9p
|
|
|
|
// Debug flags
|
|
const (
|
|
DbgPrintFcalls = (1 << iota) // print all 9P messages on stderr
|
|
DbgPrintPackets // print the raw packets on stderr
|
|
DbgLogFcalls // keep the last N 9P messages (can be accessed over http)
|
|
DbgLogPackets // keep the last N 9P messages (can be accessed over http)
|
|
)
|