You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
Go
15 lines
402 B
Go
// +build js nacl plan9 windows
|
|
|
|
package main
|
|
|
|
type userInfo struct {
|
|
}
|
|
|
|
// Restrict access to the files specified in config in an OS-dependent way.
|
|
// This is intended to be called immediately prior to accepting client
|
|
// connections and may be used to establish a security "jail" for the molly
|
|
// brown executable.
|
|
func enableSecurityRestrictions(config SysConfig, ui userInfo) error {
|
|
return nil
|
|
}
|