File: interface.go

package info (click to toggle)
golang-vhost 0.0~git20140120-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 96 kB
  • ctags: 93
  • sloc: makefile: 18
file content (11 lines) | stat: -rw-r--r-- 91 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
package vhost

import (
	"net"
)

type Conn interface {
	net.Conn
	Host() string
	Free()
}