Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/ inproc Public

Package inproc implements an in-process connection.

License

Notifications You must be signed in to change notification settings

hslam/inproc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

9 Commits

Repository files navigation

inproc

PkgGoDev Build Status codecov Go Report Card LICENSE

Package inproc implements an in-process connection.

Features

  • In-process connection.
  • Compatible with the net.Conn and the net.Listener interface.

Get started

Install

go get github.com/hslam/inproc

Import

import "github.com/hslam/inproc"

Usage

Example

package main
import (
	"fmt"
	"github.com/hslam/inproc"
	"net"
)
func main() {
	address := ":8080"
	l, err := inproc.Listen(address)
	if err != nil {
		panic(err)
	}
	defer l.Close()
	go func() {
		for {
			conn, err := l.Accept()
			if err != nil {
				return
			}
			go func(conn net.Conn) {
				buf := make([]byte, 1024)
				for {
					n, err := conn.Read(buf)
					if err != nil {
						break
					}
					conn.Write(buf[:n])
				}
				conn.Close()
			}(conn)
		}
	}()
	conn, err := inproc.Dial(address)
	if err != nil {
		panic(err)
	}
	msg := "Hello World"
	if _, err := conn.Write([]byte(msg)); err != nil {
		panic(err)
	}
	buf := make([]byte, 1024)
	n, err := conn.Read(buf)
	if err != nil {
		panic(err)
	}
	fmt.Println(string(buf[:n]))
	conn.Close()
}

Output

Hello World

License

This package is licensed under a MIT license (Copyright (c) 2021 Meng Huang)

Author

inproc was written by Meng Huang.

About

Package inproc implements an in-process connection.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /