Menu

Get messages still in queue

faiq
2007-03-01
2013-02-09
  • faiq

    faiq - 2007-03-01

    Is there a way to find out whether the messages sent by client1 have reached the destination and still do not remain in the relay queue?

    Something like getOutgoingQueueSize() in pircbot www.jibble.org/javadocs/pircbot/index.html

     
    • George Yunaev

      George Yunaev - 2007-03-01

      Currently there is only undocumented way:

      if ( irc->outgoing_offset > 0 )
      {
         // we still have something in output buffer
      }

      Note that the fact your message was sent does not mean the server processed it. For example, some servers silently ignore repetitive messages as spam.

       

Log in to post a comment.