FIXED:
* Windows logging

ADDED:
* netx (and netx/inetcksum), the latter of which implements the Internet
  Checksum as a hash.Hash.
This commit is contained in:
brent saner
2025-09-05 13:53:29 -04:00
parent 2222cea7fb
commit 970acd0ee4
8 changed files with 690 additions and 2 deletions

View File

@@ -7,10 +7,10 @@ import (
// Flags for logger configuration. These are used internally.
// LogUndefined indicates an undefined Logger type.
LogUndefined bitmask.MaskBit = 0
const LogUndefined bitmask.MaskBit = 0
const (
// LogWinLogger indicates a WinLogger Logger type (Event Log).
LogWinLogger bitmask.MaskBit= 1 << iota
LogWinLogger bitmask.MaskBit = 1 << iota
// LogFile flags a FileLogger Logger type.
LogFile
// LogStdout flags a StdLogger Logger type.