containerd/vendor/github.com/godbus/dbus/v5
Davanum Srinivas de6db4038c
Update vendored runc to v1.0.0.0-rc94
Note that this is the code in containerd that uses runc (as almost
a library). Please see the other commit for the update to runc binary
itself.

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2021-05-10 13:12:48 -04: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 vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04: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 revendor containerd/cgroups 2020-01-13 16:09:59 +09: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 vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
CONTRIBUTING.md Go mod vendor 2020-12-01 01:41:25 +08:00
dbus.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
decoder.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
default_handler.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
doc.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
encoder.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
export.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
go.mod revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
go.sum Go mod vendor 2020-12-01 01:41:25 +08:00
homedir_dynamic.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
homedir_static.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
homedir.go revendor containerd/cgroups 2020-01-13 16:09:59 +09: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 revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
object.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
README.markdown Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04: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 revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
sig.go Update vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04:00
transport_darwin.go revendor containerd/cgroups 2020-01-13 16:09:59 +09:00
transport_generic.go revendor containerd/cgroups 2020-01-13 16:09:59 +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 revendor containerd/cgroups 2020-01-13 16:09:59 +09: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_openbsd.go revendor containerd/cgroups 2020-01-13 16:09:59 +09: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 vendored runc to v1.0.0.0-rc94 2021-05-10 13:12:48 -04: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.7. If you installed it and set up your GOPATH, just run:

go get github.com/godbus/dbus

If you want to use the subpackages, you can install them the same way.

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

  • notify provides desktop notifications over dbus into a library.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • playerbm a bookmark utility for media players.
  • iwd go bindings for the internet wireless daemon "iwd".

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.