~ubuntu-branches/ubuntu/maverick/ldm/maverick

« back to all changes in this revision

Viewing changes to src/ldm.h

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2008-06-24 12:46:32 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20080624124632-t01ij03530wtc60o
Tags: upstream-2.0.6
ImportĀ upstreamĀ versionĀ 2.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#define LDMSTRSZ 256
2
2
 
 
3
#include "ldm-getenv-bool.h"
 
4
 
3
5
struct ldm_info {
4
6
    char    server[LDMSTRSZ];
5
7
    char    vty[LDMSTRSZ];
6
8
    char    display[LDMSTRSZ];
7
 
    char    fontpath[LDMSTRSZ];
8
9
    char    override_port[LDMSTRSZ];
9
10
    char    authfile[LDMSTRSZ];
10
11
    char    username[LDMSTRSZ];
33
34
void usage();
34
35
void die(char *msg);
35
36
void dump_cmdline(char *argv[]);
36
 
int ldm_getenv_bool(const char *name);
37
37
pid_t ldm_spawn (char **argv);
38
38
char *scopy(char *dest, char *source);
39
39
int ldm_wait (pid_t pid);