Restart Init

This commit is contained in:
Simon Martens
2026-02-18 13:41:44 +01:00
parent 938cdeb27b
commit 4f4288905d
2955 changed files with 4795 additions and 53375 deletions

View File

@@ -0,0 +1 @@
v1 d30756091fafb13b0034567e815630907dd2fab09d13bcdba7a4816c9cf840bc e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 1771415369652709956

View File

@@ -0,0 +1 @@
v1 d335202dd1a8bbd7d0990716908866bd82333f9ef9c05a1e2826d1e2ec0e48d9 ba4cd0d2bf3239573f10b866c6e5daf5f10122b545fce8fd91c34ef01ca96487 1988882 1771415370611094840

View File

@@ -0,0 +1 @@
v1 d33c2ef1240660f9af2179ea4134acfd0b2ba7fa425a986e44608cb23e6f8b58 af3ab776eff47bde6f1e9ea28e2f40721498469c399f2b4d62f4d1f15cf9c4f7 843186 1771415370589174864

View File

@@ -0,0 +1 @@
v1 d3487208a24b16e89cd18534d0ba512446c3c3063d5676930156f3ac3951b1ad ded29561a587848d01b90ada1c0db1d2e03174b1ef2815260b10175fccc42f5d 55928 1771415370680676551

View File

@@ -0,0 +1 @@
v1 d388c7ac76fb053b179472a98036efe566db4e9a0c705ba2f6e435765c54d2d9 ce372f9cb03fbbe0aa478b5a4c9a90f02fdc3d88f458819c96bc2f576264b0f5 61 1771415369476811830

View File

@@ -0,0 +1 @@
v1 d39af30281190c9a8adbe302468739d30e06138d453d4ae898dd90bff9c70e75 a09196b4bcb60672dca33f902236b8319b7f8d4d3ec2cc7d88ee4c268ac95f7e 436022 1771415369763713064

View File

@@ -0,0 +1,4 @@
./cast.go
./field.go
./mlkem1024.go
./mlkem768.go

View File

@@ -0,0 +1 @@
v1 d3cc5cfd5a729666cd902d63de2f7fce279fcff4592c3215baa51ab5430dcf40 5fb26c7459dea2ae6720d82582b199cfdc7e1cb8330a26f46c587083af250a85 2833 1771415367572969322

View File

@@ -0,0 +1,35 @@
// Code generated by cmd/cgo; DO NOT EDIT.
//line /usr/lib/go/src/net/cgo_socknew.go:1:1
// Copyright 2015 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 cgo && !netgo && (android || linux || solaris)
package net
/*
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
*/
import _ "unsafe"
import (
"syscall"
"unsafe"
)
func cgoSockaddrInet4(ip IP) * /*line :22:31*/_Ctype_struct_sockaddr /*line :22:48*/ {
sa := syscall.RawSockaddrInet4{Family: syscall.AF_INET}
copy(sa.Addr[:], ip)
return (* /*line :25:11*/_Ctype_struct_sockaddr /*line :25:28*/)(unsafe.Pointer(&sa))
}
func cgoSockaddrInet6(ip IP, zone int) * /*line :28:41*/_Ctype_struct_sockaddr /*line :28:58*/ {
sa := syscall.RawSockaddrInet6{Family: syscall.AF_INET6, Scope_id: uint32(zone)}
copy(sa.Addr[:], ip)
return (* /*line :31:11*/_Ctype_struct_sockaddr /*line :31:28*/)(unsafe.Pointer(&sa))
}

View File

@@ -0,0 +1,8 @@
./decode.go
./encode.go
./fold.go
./indent.go
./scanner.go
./stream.go
./tables.go
./tags.go