~ubuntu-branches/ubuntu/vivid/munge/vivid

« back to all changes in this revision

Viewing changes to src/munged/conf.h

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2011-02-28 20:41:12 UTC
  • mfrom: (6.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110228204112-2lc8ss9geeusv5uo
Tags: 0.5.10-1
* New upstream release 
* Updated copyright, homepage, watch thanks to Chris Dunlap
* Standards version upgraded to 3.9.1.0 (no changes) 
* Switch to dpkg-source 3.0 (quilt) format
* Added explicit dependency by the same version of libmunge for munge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
 
 *  $Id: conf.h 771 2010-03-02 23:14:07Z dun $
 
2
 *  $Id: conf.h 890 2011-01-20 01:54:21Z chris.m.dunlap $
3
3
 *****************************************************************************
4
4
 *  Written by Chris Dunlap <cdunlap@llnl.gov>.
5
 
 *  Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
 
5
 *  Copyright (C) 2007-2011 Lawrence Livermore National Security, LLC.
6
6
 *  Copyright (C) 2002-2007 The Regents of the University of California.
7
7
 *  UCRL-CODE-155910.
8
8
 *
9
9
 *  This file is part of the MUNGE Uid 'N' Gid Emporium (MUNGE).
10
 
 *  For details, see <http://home.gna.org/munge/>.
 
10
 *  For details, see <http://munge.googlecode.com/>.
11
11
 *
12
12
 *  MUNGE is free software: you can redistribute it and/or modify it under
13
13
 *  the terms of the GNU General Public License as published by the Free
48
48
    unsigned        got_force:1;        /* flag for FORCE option             */
49
49
    unsigned        got_foreground:1;   /* flag for FOREGROUND option        */
50
50
    unsigned        got_group_stat:1;   /* flag for gids stat'ing /etc/group */
51
 
    unsigned        got_replay_retry:1; /* flag for allowing decode retries  */
 
51
    unsigned        got_socket_retry:1; /* flag for allowing decode retries  */
52
52
    unsigned        got_root_auth:1;    /* flag if root can decode any cred  */
53
53
    munge_cipher_t  def_cipher;         /* default cipher type               */
54
54
    munge_zip_t     def_zip;            /* default compression type          */
55
55
    munge_mac_t     def_mac;            /* default message auth code type    */
56
 
    munge_ttl_t     def_ttl;            /* default time-to-live              */
57
 
    munge_ttl_t     max_ttl;            /* default time-to-live              */
 
56
    munge_ttl_t     def_ttl;            /* default time-to-live in seconds   */
 
57
    munge_ttl_t     max_ttl;            /* maximum time-to-live in seconds   */
58
58
    char           *config_name;        /* configuration filename            */
59
59
    char           *logfile_name;       /* daemon log file name              */
60
60
    char           *pidfile_name;       /* daemon pid file name              */
67
67
    int             mac_key_len;        /* length of mac subkey              */
68
68
    struct in_addr  addr;               /* IPv4 addr in n/w byte order       */
69
69
    gids_t          gids;               /* supplementary group information   */
70
 
    int             gids_interval;      /* gids update interval in seconds   */
 
70
    int             gids_update_secs;   /* gids update interval in seconds   */
71
71
    int             nthreads;           /* num threads for processing creds  */
72
72
    char           *auth_server_dir;    /* dir in which to create auth pipe  */
73
73
    char           *auth_client_dir;    /* dir in which to create auth file  */