 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			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>
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Created by cgo -godefs - DO NOT EDIT
 | |
| // cgo -godefs defs_openbsd.go
 | |
| 
 | |
| package tcp
 | |
| 
 | |
| const (
 | |
| 	sysFIONREAD = 0x4004667f
 | |
| 
 | |
| 	sysAF_INET  = 0x2
 | |
| 	sysAF_INET6 = 0x18
 | |
| 
 | |
| 	sysPF_INOUT = 0x0
 | |
| 	sysPF_IN    = 0x1
 | |
| 	sysPF_OUT   = 0x2
 | |
| 	sysPF_FWD   = 0x3
 | |
| 
 | |
| 	sysDIOCNATLOOK = 0xc0504417
 | |
| )
 | |
| 
 | |
| type sockaddrStorage struct {
 | |
| 	Len        uint8
 | |
| 	Family     uint8
 | |
| 	X__ss_pad1 [6]uint8
 | |
| 	X__ss_pad2 uint64
 | |
| 	X__ss_pad3 [240]uint8
 | |
| }
 | |
| 
 | |
| type sockaddr struct {
 | |
| 	Len    uint8
 | |
| 	Family uint8
 | |
| 	Data   [14]int8
 | |
| }
 | |
| 
 | |
| type sockaddrInet struct {
 | |
| 	Len    uint8
 | |
| 	Family uint8
 | |
| 	Port   uint16
 | |
| 	Addr   [4]byte /* in_addr */
 | |
| 	Zero   [8]int8
 | |
| }
 | |
| 
 | |
| type sockaddrInet6 struct {
 | |
| 	Len      uint8
 | |
| 	Family   uint8
 | |
| 	Port     uint16
 | |
| 	Flowinfo uint32
 | |
| 	Addr     [16]byte /* in6_addr */
 | |
| 	Scope_id uint32
 | |
| }
 | |
| 
 | |
| type pfiocNatlook struct {
 | |
| 	Saddr     [16]byte /* pf_addr */
 | |
| 	Daddr     [16]byte /* pf_addr */
 | |
| 	Rsaddr    [16]byte /* pf_addr */
 | |
| 	Rdaddr    [16]byte /* pf_addr */
 | |
| 	Rdomain   uint16
 | |
| 	Rrdomain  uint16
 | |
| 	Sport     uint16
 | |
| 	Dport     uint16
 | |
| 	Rsport    uint16
 | |
| 	Rdport    uint16
 | |
| 	Af        uint8
 | |
| 	Proto     uint8
 | |
| 	Direction uint8
 | |
| 	Pad_cgo_0 [1]byte
 | |
| }
 | |
| 
 | |
| const (
 | |
| 	sizeofSockaddrStorage = 0x100
 | |
| 	sizeofSockaddr        = 0x10
 | |
| 	sizeofSockaddrInet    = 0x10
 | |
| 	sizeofSockaddrInet6   = 0x1c
 | |
| 	sizeofPfiocNatlook    = 0x50
 | |
| )
 |