mirror of
https://github.com/shadow1ng/fscan.git
synced 2026-09-22 03:10:42 +08:00
10 lines
193 B
Go
10 lines
193 B
Go
package services
|
|
|
|
import "io"
|
|
|
|
const maxServiceHTTPBodyBytes = 2 << 20
|
|
|
|
func readServiceHTTPBody(r io.Reader) ([]byte, error) {
|
|
return io.ReadAll(io.LimitReader(r, maxServiceHTTPBodyBytes))
|
|
}
|