mirror of
https://github.com/impact-eintr/netstack.git
synced 2025-10-05 12:56:55 +08:00
7 lines
254 B
Go
7 lines
254 B
Go
package tcp
|
||
|
||
// endpoint 表示TCP端点。该结构用作端点用户和协议实现之间的接口;让并发goroutine调用端点是合法的,
|
||
// 它们是正确同步的。然而,协议实现在单个goroutine中运行。
|
||
type endpoint struct {
|
||
}
|