mirror of
https://github.com/golang/net.git
synced 2026-04-01 02:47:08 +09:00
Change-Id: I5419445ef15b0c080fb3b5c2bd413d74ac52bdd4 Co-authored-by: limeidan <limeidan@loongson.cn> Co-authored-by: liuxiaodong <liuxiaodong@loongson.cn> Reviewed-on: https://go-review.googlesource.com/c/net/+/355549 Trust: Damien Neil <dneil@google.com> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org>
14 lines
265 B
Go
14 lines
265 B
Go
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build loong64
|
|
// +build loong64
|
|
|
|
package socket
|
|
|
|
const (
|
|
sysRECVMMSG = 0xf3
|
|
sysSENDMMSG = 0x10d
|
|
)
|