[MIRROR: https://git.mills.io/prologic/go-gopher] Gopher (RFC 1436) protocol library for the Go (Golang) programming language supporting both client and server
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
James Mills 54a3d14449
Fix tests and add Drone CI config
há 2 anos
.github Upgrade to GitHub-native Dependabot (#18) há 2 anos
examples Remove some large files há 2 anos
testdata Fix tests (#12) há 3 anos
.drone.yml Fix tests and add Drone CI config há 2 anos
.gitignore Remove some large files há 2 anos
LICENSE Added LICENSE há 7 anos
Makefile Migrate to Drone CI há 5 anos
README.md Fix tests and add Drone CI config há 2 anos
_config.yml Set theme jekyll-theme-hacker há 5 anos
go.mod Fix tests and add Drone CI config há 2 anos
go.sum Fix tests and add Drone CI config há 2 anos
gopher.go Fix tests and add Drone CI config há 2 anos
gopher_test.go Fix tests and add Drone CI config há 2 anos

README.md

Gopher protocol library for Golang

Build Status

This is a standards compliant Gopher library for the Go programming language implementing the RFC 1436 specification. The library includes both client and server handling and examples of each.

Installation

$ go get git.mills.io/prologic/go-gopher

Usage

import "git.mills.io/prologic/go-gopher"

Example

Client

package main

import (
	"fmt"

	"git.mills.io/prologic/go-gopher"
)

func main() {
	res, _ := gopher.Get("gopher://gopher.floodgap.com/")
	bytes, _ := res.Dir.ToText()
	fmt.Println(string(bytes))
}

Server

package main

import (
	"log"

	"git.mills.io/prologic/go-gopher"
)

func hello(w gopher.ResponseWriter, r *gopher.Request) {
	w.WriteInfo("Hello World!")
}

func main() {
	gopher.HandleFunc("/hello", hello)
	log.Fatal(gopher.ListenAndServe("localhost:70", nil))
}

Related projects:

  • gopherproxy gopherproxy is Gopher to HTTP proxy that uses go-gopher for all of its core functionality.

  • gopherclient gopherclient is a cross-platform QT/QML GUI Gopher Client using the gopherproxy library as its backend.

License

MIT