mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-10-31 00:01:40 +01:00 
			
		
		
		
	Starting at a minimal binary and adding one feature back...
    tailscaled tailscale combined (linux/amd64)
     30073135  17451704  31543692 omitting everything
    +  480302 +   10258 +  493896 .. add debugportmapper
    +  475317 +  151943 +  467660 .. add portmapper
    +  500086 +  162873 +  510511 .. add portmapper+debugportmapper
Fixes #17148
Change-Id: I90bd0e9d1bd8cbe64fa2e885e9afef8fb5ee74b1
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
		
	
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			495 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			495 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) Tailscale Inc & AUTHORS
 | |
| // SPDX-License-Identifier: BSD-3-Clause
 | |
| 
 | |
| // Code generated by gen.go; DO NOT EDIT.
 | |
| 
 | |
| //go:build ts_omit_debugportmapper
 | |
| 
 | |
| package buildfeatures
 | |
| 
 | |
| // HasDebugPortMapper is whether the binary was built with support for modular feature "portmapper debug support".
 | |
| // Specifically, it's whether the binary was NOT built with the "ts_omit_debugportmapper" build tag.
 | |
| // It's a const so it can be used for dead code elimination.
 | |
| const HasDebugPortMapper = false
 |