Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Package native provides easy access to native byte order.
offering a few simple helpers and interfaces to provide a simple pattern for managing payload encoding and decoding.
Package socket provides a low-level network connection type which integrates with Go's runtime network poller to provide asynchronous I/O and deadline support.
provides a series of methods for big-endian and little-endian number operations
Package rtnetlink allows the kernel's routing tables to be read and altered. Network routes, IP addresses, Link parameters, Neighbor setups, Queueing, disciplines, Traffic classes and Packet classifiers may all be controlled. It is based on netlink messages.
Only for Windows, but some Go library need this
Package netns allows ultra-simple network namespace handling. NsHandles can be retrieved and set. Note that the current namespace is thread local so actions that set and reset namespaces should use LockOSThread to make sure the namespace doesn't change due to a goroutine switch. It is best to close NsHandles when you are done with them. This can be accomplished via a `defer ns.Close()` on the handle. Changing namespaces requires elevated privileges, so in most cases this code needs to be run as root.
DHCPv4 decoding/encoding library with client and server code, written in Go.
cors package is net/http handler to handle CORS related requests as defined by @urlhttp://www.w3.org/TR/cors/,http://www.w3.org/TR/cors/
This package provides access to Linux packet sockets (AF_PACKET) in Go
Package gostub is used for stubbing variables in tests, and resetting the original value once the test has been run.
a thin layer of wrappers around network interfaces
This is a general overview of the features that comes with Clash.
Package lz4 implements reading and writing lz4 compressed data.
Package form implements encoding and decoding of application/x-www-form-urlencoded data.
several IANA constants, and helpers used by dhcpv6 and dhcpv4
Package netlink provides low-level access to Linux netlink sockets (AF_NETLINK).
✨
simple implementation of RFC1035 labels, used by dhcpv6 and dhcpv4
Package netlink provides a simple library for netlink. Netlink is the interface a user-space program in linux uses to communicate with the kernel. It can be used to add and remove interfaces, set up ip addresses and routes, and confiugre ipsec. Netlink communication requires elevated privileges, so in most cases this code needs to be run as root. The low level primitives for netlink are contained in the nl subpackage. This package attempts to provide a high-level interface that is loosly modeled on the iproute2 cli.