 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>
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Created by cgo -godefs - DO NOT EDIT
 | |
| // cgo -godefs defs_freebsd.go
 | |
| 
 | |
| package tcpinfo
 | |
| 
 | |
| const (
 | |
| 	sysTCP_INFO = 0x20
 | |
| 
 | |
| 	sysTCPI_OPT_TIMESTAMPS = 0x1
 | |
| 	sysTCPI_OPT_SACK       = 0x2
 | |
| 	sysTCPI_OPT_WSCALE     = 0x4
 | |
| 	sysTCPI_OPT_ECN        = 0x8
 | |
| 	sysTCPI_OPT_TOE        = 0x10
 | |
| 
 | |
| 	sizeofTCPInfo = 0xec
 | |
| )
 | |
| 
 | |
| type tcpInfo struct {
 | |
| 	State                  uint8
 | |
| 	X__tcpi_ca_state       uint8
 | |
| 	X__tcpi_retransmits    uint8
 | |
| 	X__tcpi_probes         uint8
 | |
| 	X__tcpi_backoff        uint8
 | |
| 	Options                uint8
 | |
| 	Pad_cgo_0              [2]byte
 | |
| 	Rto                    uint32
 | |
| 	X__tcpi_ato            uint32
 | |
| 	Snd_mss                uint32
 | |
| 	Rcv_mss                uint32
 | |
| 	X__tcpi_unacked        uint32
 | |
| 	X__tcpi_sacked         uint32
 | |
| 	X__tcpi_lost           uint32
 | |
| 	X__tcpi_retrans        uint32
 | |
| 	X__tcpi_fackets        uint32
 | |
| 	X__tcpi_last_data_sent uint32
 | |
| 	X__tcpi_last_ack_sent  uint32
 | |
| 	Last_data_recv         uint32
 | |
| 	X__tcpi_last_ack_recv  uint32
 | |
| 	X__tcpi_pmtu           uint32
 | |
| 	X__tcpi_rcv_ssthresh   uint32
 | |
| 	Rtt                    uint32
 | |
| 	Rttvar                 uint32
 | |
| 	Snd_ssthresh           uint32
 | |
| 	Snd_cwnd               uint32
 | |
| 	X__tcpi_advmss         uint32
 | |
| 	X__tcpi_reordering     uint32
 | |
| 	X__tcpi_rcv_rtt        uint32
 | |
| 	Rcv_space              uint32
 | |
| 	Snd_wnd                uint32
 | |
| 	Snd_bwnd               uint32
 | |
| 	Snd_nxt                uint32
 | |
| 	Rcv_nxt                uint32
 | |
| 	Toe_tid                uint32
 | |
| 	Snd_rexmitpack         uint32
 | |
| 	Rcv_ooopack            uint32
 | |
| 	Snd_zerowin            uint32
 | |
| 	X__tcpi_pad            [26]uint32
 | |
| }
 |