Go to file
James Mills 0c68ed5f58 Set theme jekyll-theme-hacker 2018-12-30 23:35:52 +10:00
examples Fixed a bunch of bugs found with go-fuzz 2018-04-15 19:48:30 -07:00
testdata Migrate to Drone CI 2018-12-30 23:29:30 +10:00
.drone.yml Migrate to Drone CI 2018-12-30 23:29:30 +10:00
.gitignore Migrate to Drone CI 2018-12-30 23:29:30 +10:00
LICENSE Added LICENSE 2016-09-14 23:16:43 +10:00
Makefile Migrate to Drone CI 2018-12-30 23:29:30 +10:00
README.md Migrate to Drone CI 2018-12-30 23:29:30 +10:00
_config.yml Set theme jekyll-theme-hacker 2018-12-30 23:35:52 +10:00
go.mod Fix Go modules 2018-12-30 23:33:16 +10:00
go.sum Fix Go modules 2018-12-30 23:33:16 +10:00
gopher.go Fixed a bunch of bugs found with go-fuzz 2018-04-15 19:48:30 -07:00
gopher_test.go Migrate to Drone CI 2018-12-30 23:29:30 +10:00

README.md

Gopher protocol library for Golang

Build Status CodeCov Go Report Card GoDoc Sourcegraph

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 github.com/prologic/go-gopher

Usage

import "github.com/prologic/go-gopher"

Example

Client

package main

import (
	"fmt"

	"github.com/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"

	"github.com/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