summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Philipp15b/go-steam/auth_events.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-06-22 01:00:27 +0200
committerWim <wim@42.be>2017-06-22 01:00:27 +0200
commit1f914618538920db4bfec7b106ee97038b157c9b (patch)
tree6bd0ab107fe1673dbacdf9dfd10004289cd7bfab /vendor/github.com/Philipp15b/go-steam/auth_events.go
parent1f9874102aaca09ce5e0289beff376c307b8c57b (diff)
downloadmatterbridge-msglm-1f914618538920db4bfec7b106ee97038b157c9b.tar.gz
matterbridge-msglm-1f914618538920db4bfec7b106ee97038b157c9b.tar.bz2
matterbridge-msglm-1f914618538920db4bfec7b106ee97038b157c9b.zip
Add vendor (steam)
Diffstat (limited to 'vendor/github.com/Philipp15b/go-steam/auth_events.go')
-rw-r--r--vendor/github.com/Philipp15b/go-steam/auth_events.go53
1 files changed, 53 insertions, 0 deletions
diff --git a/vendor/github.com/Philipp15b/go-steam/auth_events.go b/vendor/github.com/Philipp15b/go-steam/auth_events.go
new file mode 100644
index 00000000..45ad0e08
--- /dev/null
+++ b/vendor/github.com/Philipp15b/go-steam/auth_events.go
@@ -0,0 +1,53 @@
+package steam
+
+import (
+ . "github.com/Philipp15b/go-steam/protocol/steamlang"
+ . "github.com/Philipp15b/go-steam/steamid"
+)
+
+type LoggedOnEvent struct {
+ Result EResult
+ ExtendedResult EResult
+ OutOfGameSecsPerHeartbeat int32
+ InGameSecsPerHeartbeat int32
+ PublicIp uint32
+ ServerTime uint32
+ AccountFlags EAccountFlags
+ ClientSteamId SteamId `json:",string"`
+ EmailDomain string
+ CellId uint32
+ CellIdPingThreshold uint32
+ Steam2Ticket []byte
+ UsePics bool
+ WebApiUserNonce string
+ IpCountryCode string
+ VanityUrl string
+ NumLoginFailuresToMigrate int32
+ NumDisconnectsToMigrate int32
+}
+
+type LogOnFailedEvent struct {
+ Result EResult
+}
+
+type LoginKeyEvent struct {
+ UniqueId uint32
+ LoginKey string
+}
+
+type LoggedOffEvent struct {
+ Result EResult
+}
+
+type MachineAuthUpdateEvent struct {
+ Hash []byte
+}
+
+type AccountInfoEvent struct {
+ PersonaName string
+ Country string
+ CountAuthedComputers int32
+ AccountFlags EAccountFlags
+ FacebookId uint64 `json:",string"`
+ FacebookName string
+}