File: proxy_linux.go

package info (click to toggle)
golang-github-canonical-go-dqlite 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 720 kB
  • sloc: sh: 380; 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 */
)