File indexing completed on 2024-05-26 05:14:35

0001 /***************************************************************************
0002  *   SPDX-FileCopyrightText: 2006 Till Adam <adam@kde.org>                 *
0003  *                                                                         *
0004  *   SPDX-License-Identifier: LGPL-2.0-or-later                            *
0005  ***************************************************************************/
0006 #pragma once
0007 
0008 namespace Akonadi
0009 {
0010 namespace Server
0011 {
0012 // rfc1730 section 3
0013 /** The state of the client
0014  */
0015 enum ConnectionState {
0016     NonAuthenticated, ///< Not yet authenticated
0017     Authenticated, ///< The client is authenticated
0018     LoggingOut
0019 };
0020 
0021 } // namespace Server
0022 } // namespace Akonadi