New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reply client tag #288
Reply client tag #288
Conversation
fc63a49
to
b852057
Compare
In this example, a `PRIVMSG` is sent to a channel with an ID provided by the server. A client sends a reply to this message and the server sends an echo-message back to the client. | ||
|
||
S: @draft/msgid=123 :nick!user@host PRIVMSG #channel :Hello! | ||
C: @+draft/reply=123 :nick2!user2@host2 PRIVMSG #channel :Hello to you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Client doesn't usually send its own nick/user/host in PRIVMSG
|
||
S: @draft/msgid=123 :nick!user@host PRIVMSG #channel :Hello! | ||
C: @+draft/reply=123 :nick2!user2@host2 PRIVMSG #channel :Hello to you! | ||
S: @draft/msgid=456;+draft/reply=abc :nick2!user2@host2 PRIVMSG #channel :Hello to you! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does abc refer to?
Message ids is merged and this has had no objections. Will merge tomorrow. |
+draft/reply=msgid
Depends on #285