Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
1020 B
Go
45 lines
1020 B
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build darwin || freebsd || linux
|
|
|
|
package ipv4
|
|
|
|
import (
|
|
"net"
|
|
"unsafe"
|
|
|
|
"golang.org/x/net/internal/socket"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func (so *sockOpt) getIPMreqn(c *socket.Conn) (*net.Interface, error) {
|
|
b := make([]byte, so.Len)
|
|
if _, err := so.Get(c, b); err != nil {
|
|
return nil, err
|
|
}
|
|
mreqn := (*unix.IPMreqn)(unsafe.Pointer(&b[0]))
|
|
if mreqn.Ifindex == 0 {
|
|
return nil, nil
|
|
}
|
|
ifi, err := net.InterfaceByIndex(int(mreqn.Ifindex))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ifi, nil
|
|
}
|
|
|
|
func (so *sockOpt) setIPMreqn(c *socket.Conn, ifi *net.Interface, grp net.IP) error {
|
|
var mreqn unix.IPMreqn
|
|
if ifi != nil {
|
|
mreqn.Ifindex = int32(ifi.Index)
|
|
}
|
|
if grp != nil {
|
|
mreqn.Multiaddr = [4]byte{grp[0], grp[1], grp[2], grp[3]}
|
|
}
|
|
b := (*[unix.SizeofIPMreqn]byte)(unsafe.Pointer(&mreqn))[:unix.SizeofIPMreqn]
|
|
return so.Set(c, b)
|
|
}
|