containerd/vendor/github.com/godbus/dbus/v5
Aditi 7ec75b1207 Update CNI to 1.2.0
Signed-off-by: Aditi <sharmaad@vmware.com>
2023-01-30 10:25:37 +00:00
..
auth_anonymous.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth_external.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth_sha1.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
auth.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
call.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
conn_darwin.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn_other.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
conn_unix.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn_windows.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
conn.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
CONTRIBUTING.md Go mod vendor 2020-12-01 01:41:25 +08:00
dbus.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
decoder.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
default_handler.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
doc.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
encoder.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
escape.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
export.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
homedir.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
LICENSE revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
MAINTAINERS Go mod vendor 2020-12-01 01:41:25 +08:00
match.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
message.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
object.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
README.md go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
sequence.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
sequential_handler.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
server_interfaces.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
sig.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
transport_darwin.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_generic.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_nonce_tcp.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_tcp.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unix.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
transport_unixcred_dragonfly.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unixcred_freebsd.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
transport_unixcred_linux.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_unixcred_netbsd.go go.mod: github.com/opencontainers/runc v1.1.0 2022-01-18 13:35:22 +09:00
transport_unixcred_openbsd.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_zos.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00
variant_lexer.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
variant_parser.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
variant.go Update CNI to 1.2.0 2023-01-30 10:25:37 +00:00

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon "iwd".
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.