File: interface.go

package info (click to toggle)
golang-vhost 0.0~git20140120-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 104 kB
  • sloc: makefile: 2
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()
}