Skip to content

Instantly share code, notes, and snippets.

View stephane-martin's full-sized avatar
🐈
Meow

Stephane Martin stephane-martin

🐈
Meow
  • undisclosed
  • Lyon, France
View GitHub Profile

Keybase proof

I hereby claim:

  • I am stephane-martin on github.
  • I am stephanemartin (https://keybase.io/stephanemartin) on keybase.
  • I have a public key ASAQV9beGlCGpaERb2Auu6JPvI9s2iyoliD1waobGrPDYwo

To claim this, I am signing this object:

@stephane-martin
stephane-martin / inetd.go
Created November 21, 2018 23:03
Make a net.Listener to listen on stdin for inetd enables services
package main
import (
"errors"
"net"
"os"
"sync"
)
type StdinListener struct {