Line data Source code
1 : /* 2 : * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #ifndef XMPP_SANDESH_H_ 6 : #define XMPP_SANDESH_H_ 7 : 8 : #include <sandesh/sandesh.h> 9 : 10 : class XmppServer; 11 : 12 : struct XmppSandeshContext : public SandeshContext { 13 92 : XmppSandeshContext() : xmpp_server(NULL), test_mode(false) { 14 92 : } 15 : 16 : XmppServer *xmpp_server; 17 : bool test_mode; 18 : }; 19 : 20 : #endif /* XMPP_SANDESH_H_ */