@@ -280,9 +280,9 @@ func (c *Client) handlePing(timestamp int64, pongChan chan struct{}, wg *sync.Wa
280
280
281
281
// maybeStartCapHandshake will run a CAP LS and all the relevant CAP REQ
282
282
// commands if there are any CAPs requested.
283
- func (c * Client ) maybeStartCapHandshake () error {
283
+ func (c * Client ) maybeStartCapHandshake () {
284
284
if len (c .caps ) <= 0 {
285
- return nil
285
+ return
286
286
}
287
287
288
288
c .Write ("CAP LS" )
@@ -293,8 +293,6 @@ func (c *Client) maybeStartCapHandshake() error {
293
293
c .remainingCapResponses ++
294
294
}
295
295
}
296
-
297
- return nil
298
296
}
299
297
300
298
// CapRequest allows you to request IRCv3 capabilities from the server during
@@ -330,6 +328,31 @@ func (c *Client) sendError(err error) {
330
328
}
331
329
}
332
330
331
+ func (c * Client ) startReadLoop (wg * sync.WaitGroup ) {
332
+ wg .Add (1 )
333
+
334
+ go func () {
335
+ defer wg .Done ()
336
+
337
+ for {
338
+ m , err := c .ReadMessage ()
339
+ if err != nil {
340
+ c .sendError (err )
341
+ break
342
+ }
343
+
344
+ if f , ok := clientFilters [m .Command ]; ok {
345
+ f (c , m )
346
+ }
347
+
348
+ if c .config .Handler != nil {
349
+ c .config .Handler .Handle (c , m )
350
+ }
351
+ }
352
+
353
+ }()
354
+ }
355
+
333
356
// Run starts the main loop for this IRC connection. Note that it may break in
334
357
// strange and unexpected ways if it is called again before the first connection
335
358
// exits.
@@ -355,21 +378,9 @@ func (c *Client) Run() error {
355
378
c .Writef ("NICK :%s" , c .config .Nick )
356
379
c .Writef ("USER %s 0.0.0.0 0.0.0.0 :%s" , c .config .User , c .config .Name )
357
380
358
- for {
359
- m , err := c .ReadMessage ()
360
- if err != nil {
361
- c .sendError (err )
362
- break
363
- }
364
-
365
- if f , ok := clientFilters [m .Command ]; ok {
366
- f (c , m )
367
- }
368
-
369
- if c .config .Handler != nil {
370
- c .config .Handler .Handle (c , m )
371
- }
372
- }
381
+ // Now that the handshake is pretty much done, we can start listening for
382
+ // messages.
383
+ c .startReadLoop (& wg )
373
384
374
385
// Wait for an error from any goroutine, then signal we're exiting and wait
375
386
// for the goroutines to exit.
0 commit comments