1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-05-27 19:56:02 +02:00
molly-brown/security.go

15 lines
370 B
Go

// +build !openbsd
package main
import (
"log"
)
// 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 Config, errorLog *log.Logger) {
}