Skip to content

Latest commit

 

History

16 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TFTP Client and Server written in Go

TFTP Server

Usage:

package main

import (
	"flag"
	"github.com/go-tftp/tftp"
	"log"
	"time"
)

var (
	address = flag.String("a", "127.0.0.1:69", "listen address")
)

func main() {

	flag.Parse()

	s := tftp.NewServer(tftp.WithTimeout(10 * time.Second))
	log.Fatal(s.ListenAndServer(*address))

}

TFTP Client

...

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages