index.html
Main Page
|
modules.html
Modules
|
namespaces.html
Namespace List
|
hierarchy.html
Class Hierarchy
|
annotated.html
Data Structures
|
dirs.html
Directories
|
files.html
File List
|
namespacemembers.html
Namespace Members
|
functions.html
Data Fields
|
pages.html
Related Pages
dir_000004.html
dbus
dbus-transport-protected.h
00001
/* -*- mode: C; c-file-style: "gnu" -*- */
00002
/* dbus-transport-protected.h Used by subclasses of DBusTransport object (internal to D-BUS implementation)
00003
*
00004
* Copyright (C) 2002, 2004  Red Hat Inc.
00005
*
00006
* Licensed under the Academic Free License version 2.1
00007
*
00008
* This program is free software; you can redistribute it and/or modify
00009
* it under the terms of the GNU General Public License as published by
00010
* the Free Software Foundation; either version 2 of the License, or
00011
* (at your option) any later version.
00012
*
00013
* This program is distributed in the hope that it will be useful,
00014
* but WITHOUT ANY WARRANTY; without even the implied warranty of
00015
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016
* GNU General Public License for more details.
00017
*
00018
* You should have received a copy of the GNU General Public License
00019
* along with this program; if not, write to the Free Software
00020
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00021
*
00022
*/
00023
#ifndef DBUS_TRANSPORT_PROTECTED_H
00024
#define DBUS_TRANSPORT_PROTECTED_H
00025
00026
#include <dbus/dbus-internals.h>
00027
#include <dbus/dbus-errors.h>
00028
#include <dbus/dbus-transport.h>
00029
#include <dbus/dbus-message-internal.h>
00030
#include <dbus/dbus-auth.h>
00031
#include <dbus/dbus-resources.h>
00032
00033
group__DBusMacros.html#ga0
DBUS_BEGIN_DECLS
00034
00035
typedef
struct
structDBusTransportVTable.html
DBusTransportVTable
DBusTransportVTable;
00036
structDBusTransportVTable.html
00041
struct
DBusTransportVTable
00042 {
00043   void        (*
structDBusTransportVTable.html#o0
finalize
)              (
structDBusTransport.html
DBusTransport
*transport);
00046
group__DBusTypes.html#ga2
dbus_bool_t
(*
structDBusTransportVTable.html#o1
handle_watch
)          (
structDBusTransport.html
DBusTransport
*transport,
00047
structDBusWatch.html
DBusWatch
*watch,
00048
unsigned
int
flags);
00053   void        (*
structDBusTransportVTable.html#o2
disconnect
)            (
structDBusTransport.html
DBusTransport
*transport);
00056
group__DBusTypes.html#ga2
dbus_bool_t
(*
structDBusTransportVTable.html#o3
connection_set
)        (
structDBusTransport.html
DBusTransport
*transport);
00059   void        (*
structDBusTransportVTable.html#o4
do_iteration
)          (
structDBusTransport.html
DBusTransport
*transport,
00060
unsigned
int
flags,
00061
int
timeout_milliseconds);
00066   void        (*
structDBusTransportVTable.html#o5
live_messages_changed
) (
structDBusTransport.html
DBusTransport
*transport);
00069
group__DBusTypes.html#ga2
dbus_bool_t
(*
structDBusTransportVTable.html#o6
get_unix_fd
) (
structDBusTransport.html
DBusTransport
*transport,
00070
int
*fd_p);
00072 };
00073
structDBusTransport.html
00080
struct
structDBusTransport.html
DBusTransport
00081 {
structDBusTransport.html#o0
00082
int
structDBusTransport.html#o0
refcount
;
structDBusTransport.html#o1
00084
const
DBusTransportVTable *
structDBusTransport.html#o1
vtable
;
structDBusTransport.html#o2
00086
structDBusConnection.html
DBusConnection
*
structDBusTransport.html#o2
connection
;
structDBusTransport.html#o3
00088
structDBusMessageLoader.html
DBusMessageLoader
*
structDBusTransport.html#o3
loader
;
structDBusTransport.html#o4
00090
structDBusAuth.html
DBusAuth
*
structDBusTransport.html#o4
auth
;
structDBusTransport.html#o5
00092
structDBusCredentials.html
DBusCredentials
structDBusTransport.html#o5
credentials
;
structDBusTransport.html#o6
00094
long
structDBusTransport.html#o6
max_live_messages_size
;
structDBusTransport.html#o7
00096
structDBusCounter.html
DBusCounter
*
structDBusTransport.html#o7
live_messages_size
;
structDBusTransport.html#o8
00099
char
*
structDBusTransport.html#o8
address
;
structDBusTransport.html#o9
00101
char
*
structDBusTransport.html#o9
expected_guid
;
structDBusTransport.html#o10
00103
DBusAllowUnixUserFunction
structDBusTransport.html#o10
unix_user_function
;
structDBusTransport.html#o11
00104
void
*
structDBusTransport.html#o11
unix_user_data
;
structDBusTransport.html#o12
00106
group__DBusMemory.html#ga8
DBusFreeFunction
structDBusTransport.html#o12
free_unix_user_data
;
structDBusTransport.html#o13
00108
unsigned
int
structDBusTransport.html#o13
disconnected
: 1;
structDBusTransport.html#o14
00109
unsigned
int
structDBusTransport.html#o14
authenticated
: 1;
structDBusTransport.html#o15
00110
unsigned
int
structDBusTransport.html#o15
send_credentials_pending
: 1;
structDBusTransport.html#o16
00111
unsigned
int
structDBusTransport.html#o16
receive_credentials_pending
: 1;
structDBusTransport.html#o17
00112
unsigned
int
structDBusTransport.html#o17
is_server
: 1;
structDBusTransport.html#o18
00113
unsigned
int
structDBusTransport.html#o18
unused_bytes_recovered
: 1;
00114 };
00115
00116
group__DBusTypes.html#ga2
dbus_bool_t
group__DBusTransport.html#ga1
_dbus_transport_init_base
(
structDBusTransport.html
DBusTransport
*transport,
00117
const
DBusTransportVTable *vtable,
00118
const
structDBusString.html
DBusString
*server_guid,
00119
const
structDBusString.html
DBusString
*address);
00120
void
group__DBusTransport.html#ga2
_dbus_transport_finalize_base
(
structDBusTransport.html
DBusTransport
*transport);
00121
00122
00123
00124
group__DBusMacros.html#ga1
DBUS_END_DECLS
00125
00126
#endif
/* DBUS_TRANSPORT_PROTECTED_H */
Generated on Tue Sep 13 01:28:07 2005 for D-BUS by
http://www.doxygen.org/index.html
doxygen
1.4.4
