kubernetes/vendor/github.com/godbus/dbus
2019-10-05 14:37:48 +02:00
..
.travis.yml Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
auth_anonymous.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
auth_external.go
auth_sha1.go
auth.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
BUILD Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
call.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
conn_darwin.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
conn_other.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
conn_unix.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
conn_windows.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
conn.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
CONTRIBUTING.md
dbus.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
decoder.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
default_handler.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
doc.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
encoder.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
export.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
go.mod Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
homedir_dynamic.go
homedir_static.go
homedir.go
LICENSE
MAINTAINERS updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
message.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
object.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
README.markdown Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
server_interfaces.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
sig.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
transport_darwin.go
transport_generic.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
transport_nonce_tcp.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
transport_tcp.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
transport_unix.go Bump dependency github.com/godbus/dbus@v19 (2ff6f7ffd60f) 2019-10-05 14:37:48 +02:00
transport_unixcred_dragonfly.go
transport_unixcred_freebsd.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
transport_unixcred_linux.go
transport_unixcred_openbsd.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -04:00
variant_lexer.go
variant_parser.go
variant.go updating github.com/godbus/dbus to v4.1.0+incompatible 2019-06-14 16:47:57 -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.

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.