whoissrv:whois (RFC 3912) 服务器实现库

时间:2024-07-30 11:54:41
【文件属性】:

文件名称:whoissrv:whois (RFC 3912) 服务器实现库

文件大小:2KB

文件格式:ZIP

更新时间:2024-07-30 11:54:41

Go

查询服务 whoissrv 是一个用于编写 whois (RFC 3912) 服务器的 golang 库。 这个库的设计类似于 golang net/http 包。 库使用示例: package main import ( "log" "fmt" "net" "github.com/fln/whoissrv" ) func myFunc ( req string , c net. Conn ) { fmt . Fprintf ( c , "Hello stranger from %v \r \n " , c . RemoteAddr ()) fmt . Fprintf ( c , "I know nothing about \" %v \" \r \n " , req ) } func m


网友评论