mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	![dependabot-preview[bot]](/assets/img/avatar_default.png) 9f927c4709
			
		
	
	9f927c4709
	
	
	
		
			
			Bumps [github.com/vishvananda/netlink](https://github.com/vishvananda/netlink) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/vishvananda/netlink/releases) - [Commits](https://github.com/vishvananda/netlink/compare/v1.0.0...v1.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Matthew Heon <mheon@redhat.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !linux
 | |
| 
 | |
| package netlink
 | |
| 
 | |
| func GetNetNsIdByPid(pid int) (int, error) {
 | |
| 	return 0, ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func SetNetNsIdByPid(pid, nsid int) error {
 | |
| 	return ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func GetNetNsIdByFd(fd int) (int, error) {
 | |
| 	return 0, ErrNotImplemented
 | |
| }
 | |
| 
 | |
| func SetNetNsIdByFd(fd, nsid int) error {
 | |
| 	return ErrNotImplemented
 | |
| }
 |