Loading [MathJax]/jax/output/HTML-CSS/config.js
ROOT
6.12/07
Reference Guide
ROOT Home Page
Main Page
Tutorials
User's Classes
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
k
l
n
o
p
r
s
v
w
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
core
base
inc
TVirtualAuth.h
Go to the documentation of this file.
1
// Author: G. Ganis 08/07/05
2
3
/*************************************************************************
4
* Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. *
5
* All rights reserved. *
6
* *
7
* For the licensing terms see $ROOTSYS/LICENSE. *
8
* For the list of contributors see $ROOTSYS/README/CREDITS. *
9
*************************************************************************/
10
11
#ifndef ROOT_TVirtualAuth
12
#define ROOT_TVirtualAuth
13
14
//////////////////////////////////////////////////////////////////////////
15
// //
16
// TVirtualAuth //
17
// //
18
// Abstract interface for client authentication code. //
19
// //
20
//////////////////////////////////////////////////////////////////////////
21
22
#include "
Rtypes.h
"
23
24
class
TSecContext
;
25
class
TSocket
;
26
27
class
TVirtualAuth
{
28
29
public
:
30
TVirtualAuth
() { }
31
virtual
~TVirtualAuth
() { }
32
33
virtual
TSecContext
*
Authenticate
(
TSocket
*,
const
char
*host,
34
const
char
*user,
Option_t
*options) = 0;
35
virtual
Int_t
ClientVersion
() = 0;
36
virtual
void
ErrorMsg
(
const
char
*where,
Int_t
ecode) = 0;
37
virtual
const
char
*
Name
() = 0;
38
39
ClassDef
(
TVirtualAuth
,0)
// client auth interface
40
};
41
42
#endif
Rtypes.h
TVirtualAuth::ErrorMsg
virtual void ErrorMsg(const char *where, Int_t ecode)=0
Option_t
const char Option_t
Definition:
RtypesCore.h:62
TVirtualAuth::~TVirtualAuth
virtual ~TVirtualAuth()
Definition:
TVirtualAuth.h:31
TVirtualAuth::Authenticate
virtual TSecContext * Authenticate(TSocket *, const char *host, const char *user, Option_t *options)=0
TVirtualAuth::Name
virtual const char * Name()=0
TSecContext
Definition:
TSecContext.h:36
Int_t
int Int_t
Definition:
RtypesCore.h:41
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:320
TVirtualAuth::TVirtualAuth
TVirtualAuth()
Definition:
TVirtualAuth.h:30
TVirtualAuth::ClientVersion
virtual Int_t ClientVersion()=0
TVirtualAuth
Definition:
TVirtualAuth.h:27
TSocket
Definition:
TSocket.h:60