1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
crate::ix!();
//-------------------------------------------[.cpp/bitcoin/src/ipc/context.h]
/**
| Context struct used to give IPC protocol
| implementations or implementation hooks access
| to application state, in case they need to run
| extra code that isn't needed within a single
| process, like code copying global state from
| an existing process to a new process when it's
| initialized, or code dealing with shared
| objects that are created or destroyed
| remotely.
*/
pub struct IpcContext {
}
//-------------------------------------------[.cpp/bitcoin/src/ipc/exception.h]
/**
| Exception class thrown when a call to remote
| method fails due to an IPC error, like a socket
| getting disconnected.
*/
pub struct Exception { }
//-------------------------------------------[.cpp/bitcoin/src/ipc/capnp/context.h]