Code

removed resource name from self's jid, allowing authentication against jabber.org
[inkscape.git] / src / jabber_whiteboard / error-codes.h
1 /**
2  * Whiteboard session manager
3  * Error codes
4  *
5  * Authors:
6  * David Yip <yipdw@rose-hulman.edu>
7  *
8  * Copyright (c) 2005 Authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
13 #ifndef __WHITEBOARD_JABBER_ERROR_CODES_H__
14 #define __WHITEBOARD_JABBER_ERROR_CODES_H__
16 namespace Inkscape {
18 namespace Whiteboard {
20 namespace ErrorCodes {
22 static unsigned int const SERVER_CONNECT_FAILED = 502;
23 static unsigned int const CHAT_HANDLE_IN_USE = 409;
25 }
27 }
29 }
30 #endif
32 /*
33   Local Variables:
34   mode:c++
35   c-file-style:"stroustrup"
36   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
37   indent-tabs-mode:nil
38   fill-column:99
39   End:
40 */
41 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :