Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdlayher/tftp
Package tftp implements a TFTP server, as described in RFC 1350. MIT Licensed.
https://github.com/mdlayher/tftp
Last synced: 6 days ago
JSON representation
Package tftp implements a TFTP server, as described in RFC 1350. MIT Licensed.
- Host: GitHub
- URL: https://github.com/mdlayher/tftp
- Owner: mdlayher
- License: mit
- Created: 2015-06-18T22:50:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-19T22:03:27.000Z (over 9 years ago)
- Last Synced: 2024-10-31T04:50:39.568Z (13 days ago)
- Language: Go
- Homepage: https://tools.ietf.org/html/rfc1350
- Size: 129 KB
- Stars: 10
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
tftp [![Build Status](https://travis-ci.org/mdlayher/tftp.svg?branch=master)](https://travis-ci.org/mdlayher/tftp) [![Coverage Status](https://coveralls.io/repos/mdlayher/tftp/badge.svg?branch=master)](https://coveralls.io/r/mdlayher/tftp?branch=master) [![GoDoc](http://godoc.org/github.com/mdlayher/tftp?status.svg)](http://godoc.org/github.com/mdlayher/tftp)
====Package `tftp` implements a TFTP server, as described in IETF RFC 1350. MIT Licensed.
A basic, read-only, TFTP server (`rotftpd`) which demonstrates the library is
available at [cmd/rotftpd](https://github.com/mdlayher/tftp/blob/master/cmd/rotftpd).At this time, the API is not stable, and may change over time. The eventual
goal is to implement a server, client, and testing facilities for consumers
of this package.The design of this package is inspired by Go's `net/http` package. The Go
standard library is Copyright (c) 2012 The Go Authors. All rights reserved.
The Go license can be found at https://golang.org/LICENSE.