File: proxy_linux.go

package info (click to toggle)
golang-github-cowsql-go-cowsql 1.22.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie, trixie-proposed-updates
  • size: 716 kB
  • sloc: sh: 373; makefile: 5
file content (12 lines) | stat: -rw-r--r-- 217 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
// +build linux

package app

import (
	"syscall"
)

const (
	_TCP_KEEPINTVL = syscall.TCP_KEEPINTVL /* interval between keepalives */
	_TCP_KEEPCNT   = syscall.TCP_KEEPCNT   /* number of keepalives before close */
)