diff options
Diffstat (limited to 'nexgb/auto_bigreq.go')
-rw-r--r-- | nexgb/auto_bigreq.go | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/nexgb/auto_bigreq.go b/nexgb/auto_bigreq.go index d008bce..3389470 100644 --- a/nexgb/auto_bigreq.go +++ b/nexgb/auto_bigreq.go @@ -1,10 +1,34 @@ package xgb /* - This file was generated by bigreq.xml on May 6 2012 3:00:43am EDT. + This file was generated by bigreq.xml on May 6 2012 5:48:46pm EDT. This file is automatically generated. Edit at your peril! */ +// BigreqInit must be called before using the BIG-REQUESTS extension. +func (c *Conn) BigreqInit() error { + reply, err := c.QueryExtension(12, "BIG-REQUESTS").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named BIG-REQUESTS could be found on on the server.") + } + + c.extLock.Lock() + c.extensions["BIG-REQUESTS"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["BIG-REQUESTS"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() + + return nil +} + +func init() { + newExtEventFuncs["BIG-REQUESTS"] = make(map[int]newEventFun) +} + // Skipping definition for base type 'Float' // Skipping definition for base type 'Id' |