Lines Matching refs:Session
26 class Session {
32 // Sent session-initiate, but haven't received session-accept.
35 // Received session-initiate, but haven't sent session-accept.
38 // Session has been accepted and is pending authentication.
41 // Session has been connected and authenticated.
44 // Session has been closed.
56 // Called after session state has changed. It is safe to destroy
57 // the session from within the handler if |state| is CLOSED or
62 // |channel_name| changes. Session must not be destroyed by the
75 Session() {}
76 virtual ~Session() {}
78 // Set event handler for this session. |event_handler| must outlive
82 // Returns error code for a failed session.
89 // session-initiate jingle message. Returned pointer is valid until
93 // Protocol configuration. Can be called only after session has been accepted.
97 // Set protocol configuration for an incoming session. Must be
114 DISALLOW_COPY_AND_ASSIGN(Session);