diff options
| author | Will Hawkins <[email protected]> | 2022-07-02 01:01:08 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-07-02 01:01:08 -0400 |
| commit | f0a9f4a3a50b63127a5e3d4ab2bdda3bbe4d8d0d (patch) | |
| tree | 2d5fbaac26a35e663beb89d7b96a7085aaadeb3b /utilities/utilities.go | |
| parent | 793a53ece7fd16cd52735c12f47584c438e1a58b (diff) | |
[Feature] Support spec v2 3/n
Diffstat (limited to 'utilities/utilities.go')
| -rw-r--r-- | utilities/utilities.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/utilities.go b/utilities/utilities.go index 76acbd2..7b96bef 100644 --- a/utilities/utilities.go +++ b/utilities/utilities.go @@ -76,7 +76,7 @@ func SeekForAppend(file *os.File) (err error) { return } -var GenerateConnectionId func() uint64 = func() func() uint64 { +var GenerateUniqueId func() uint64 = func() func() uint64 { var nextConnectionId uint64 = 0 return func() uint64 { return atomic.AddUint64(&nextConnectionId, 1) |
