File: //usr/local/ssl/include/orbit-2.0/orbit/orb-core/corba-orb.h
#ifndef CORBA_ORB_H
#define CORBA_ORB_H 1
#include <orbit/orb-core/orb-types.h>
#include <orbit/orb-core/corba-orb-type.h>
#include <orbit/orb-core/corba-typecode-type.h>
G_BEGIN_DECLS
CORBA_ORB CORBA_ORB_init (int *argc,
char **argv,
CORBA_ORBid orb_identifier,
CORBA_Environment *ev);
#ifdef ORBIT2_EXTENSIONS
/* Will return TRUE if the named protocol is supported by
* the ORB. Currently supported values of "name" are:
*
* "IPv4"
* "IPv6"
* "UNIX"
* "IrDA"
* "SSL"
*
* Unknown or unsupported values of "name" will make this
* method return FALSE.*/
gboolean ORBit_proto_use (const char *name);
/* Will return the maximum allowed GIOP buffer size. You will
* need to know this if your are e.g. streaming large data chunks
* to an ORBit2 client. The return type should be gulong but we
* are bound by the type chosen internally by linc2.
*/
glong ORBit_get_giop_recv_limit (void);
#endif /* ORBIT2_EXTENSIONS */
#ifdef ORBIT2_INTERNAL_API
void ORBit_ORB_forw_bind (CORBA_ORB orb,
CORBA_sequence_CORBA_octet *okey,
CORBA_Object oref,
CORBA_Environment *ev);
guint ORBit_ORB_idle_init (CORBA_ORB orb);
void ORBit_ORB_start_servers (CORBA_ORB orb);
#endif /* ORBIT2_INTERNAL_API */
G_END_DECLS
#endif