Skip to content

Implementation of different network protocols in go

Notifications You must be signed in to change notification settings

rudrodip/go-networking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Networking Concepts in Go

This repository provides examples and demonstrations of various networking concepts implemented in the Go programming language. Each section includes both server and client implementations, along with test and demo applications.

Project Structure

.
├── cmd
│   └── go-networking
│       └── main.go
├── go.mod
├── go.sum
├── Makefile
├── pkg
│   └── userinput.go
└── protocols
    ├── http
    │   ├── demo.go
    │   ├── http_client.go
    │   ├── http_server.go
    │   └── main_test.go
    ├── rpc
    │   ├── main_test.go
    │   ├── rpc_client.go
    │   └── rpc_server.go
    ├── tcp
    │   ├── demo.go
    │   ├── main_test.go
    │   ├── tcp_client.go
    │   └── tcp_server.go
    ├── udp
    │   ├── demo.go
    │   ├── main_test.go
    │   ├── udp_server.go
    │   └── upd_client.go
    └── websocket
        ├── websocket_client.go
        └── websocket_server.go

TODO Structure

  • TCP

    • TCP Server
    • TCP Client
    • TCP Test
    • TCP Demo
  • UDP

    • UDP Server
    • UDP Client
    • UDP Test
    • UDP Demo
  • HTTP

    • HTTP Server
    • HTTP Client
    • HTTP Test
    • HTTP Demo
  • RPC

    • RPC Server
    • RPC Client
    • RPC Test
    • RPC Demo
  • Websocket

    • Websocket Server
    • Websocket Client
    • Websocket Test
    • Websocket Demo

Feel free to explore each section's source code, tests, and demos to better understand the implementation of these networking concepts in Go. Contributions and feedback are welcome!