Go to file
James Mills 5fdce9bb55
Fix compatibility with GO 1.6 for context package
2016-10-02 18:10:14 -07:00
examples Add link to Floodgap in example hello server 2016-09-23 21:34:12 +10:00
.gitignore Initial Commit 2016-09-14 13:45:49 +10:00
.travis.yml Only test on default Go on Travis CI 2016-09-14 17:43:24 +10:00
LICENSE Added LICENSE 2016-09-14 23:16:43 +10:00
README.md Updated README 2016-10-01 00:33:55 -07:00
gopher.go Fix compatibility with GO 1.6 for context package 2016-10-02 18:10:14 -07:00
gopher_test.go Improve test suite by using github.com/stretchr/testify 2016-09-16 22:15:34 +10:00

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 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