/usr/include/root/THostAuth.h is in libroot-net-auth-dev 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | // @(#)root/auth:$Id$
// Author: G. Ganis 19/03/2003
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_THostAuth
#define ROOT_THostAuth
//////////////////////////////////////////////////////////////////////////
// //
// THostAuth //
// //
// Contains details about host-specific authentication methods and the //
// result of their application //
// Used by TAuthenticate //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifndef ROOT_TList
#include "TList.h"
#endif
#ifndef ROOT_TRootSecContext
#include "TRootSecContext.h"
#endif
#ifndef ROOT_AuthConst
#include "AuthConst.h"
#endif
class THostAuth : public TObject {
private:
TString fHost; // Host
Char_t fServer; // Server (kSOCKD,kROOTD,kPROOFD)
TString fUser; // Username
Int_t fNumMethods; // Number of AuthMethods
Int_t fMethods[kMAXSEC]; // AuthMethods
TString fDetails[kMAXSEC]; // AuthDetails
Int_t fSuccess[kMAXSEC]; // Statistics of successful attempts / per method
Int_t fFailure[kMAXSEC]; // Statistics of failed attempts / per method
Bool_t fActive; // Flag used in cleaning/reset
TList *fSecContexts; // List of TSecContexts related to this THostAuth
void Create(const char *host, const char *user, Int_t nmeth = 0,
Int_t *authmeth = 0, char **details = 0);
public:
THostAuth();
THostAuth(const char *host, const char *user,
Int_t nmeth = 0, Int_t *authmeth = 0, char **details = 0);
THostAuth(const char *host, Int_t server, const char *user,
Int_t nmeth = 0, Int_t *authmeth = 0, char **details = 0);
THostAuth(const char *host, const char *user, Int_t authmeth,
const char *details);
THostAuth(const char *host, Int_t server, const char *user, Int_t authmeth,
const char *details);
THostAuth(const char *asstring);
THostAuth(THostAuth &ha);
virtual ~THostAuth();
void AsString(TString &out) const;
Int_t NumMethods() const { return fNumMethods; }
Int_t GetMethod(Int_t idx) const { return fMethods[idx]; }
Bool_t HasMethod(Int_t level, Int_t *pos = 0);
void AddMethod(Int_t level, const char *details = 0);
void RemoveMethod(Int_t level);
void ReOrder(Int_t nmet, Int_t *fmet);
void Update(THostAuth *ha);
void SetFirst(Int_t level);
void AddFirst(Int_t level, const char *details = 0);
void SetLast(Int_t level);
void CountFailure(Int_t level);
void CountSuccess(Int_t level);
Int_t GetFailure(Int_t idx) const { return fFailure[idx]; }
Int_t GetSuccess(Int_t idx) const { return fSuccess[idx]; }
Bool_t IsActive() const { return fActive; }
void DeActivate() { fActive = kFALSE; }
void Activate() { fActive = kTRUE; }
void Reset();
const char *GetDetails(Int_t level);
const char *GetDetailsByIdx(Int_t idx) const { return fDetails[idx]; }
void SetDetails(Int_t level, const char *details);
const char *GetHost() const { return fHost; }
Int_t GetServer() const { return (Int_t)fServer; }
const char *GetUser() const { return fUser; }
void SetHost(const char *host) { fHost = host; }
void SetServer(Int_t server) { fServer = (Char_t)server; }
void SetUser(const char *user) { fUser = user; }
TList *Established() const { return fSecContexts; }
void SetEstablished(TList *nl) { fSecContexts = nl; }
virtual void Print(Option_t *option = "") const;
void PrintEstablished() const;
TRootSecContext *CreateSecContext(const char *user, const char *host, Int_t meth,
Int_t offset, const char *details,
const char *token, TDatime expdate = kROOTTZERO,
void *ctx = 0, Int_t key = -1);
ClassDef(THostAuth,1) // Class providing host specific authentication information
};
#endif
|