Variable: erc--server-post-connect-hook
erc--server-post-connect-hook is a variable defined in
erc-backend.el.gz.
Value
(erc-networks--warn-on-connect)
Documentation
Functions to run when a network connection is successfully opened.
Though internal, this complements erc-connect-pre-hook in that
it bookends the process rather than the logical connection, which
is the domain of erc-before-connect and erc-after-connect.
Note that unlike erc-connect-pre-hook, this only runs in server
buffers, and it does so immediately before the first protocol
exchange.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(defvar erc--server-post-connect-hook '(erc-networks--warn-on-connect)
"Functions to run when a network connection is successfully opened.
Though internal, this complements `erc-connect-pre-hook' in that
it bookends the process rather than the logical connection, which
is the domain of `erc-before-connect' and `erc-after-connect'.
Note that unlike `erc-connect-pre-hook', this only runs in server
buffers, and it does so immediately before the first protocol
exchange.")