View | Details | Raw Unified | Return to bug 26373
Collapse All | Expand All

(-)sm_inter.x (+7 lines)
Lines 63-68 Link Here
63
63
64
		void					 SM_SIMU_CRASH(void) = 5;
64
		void					 SM_SIMU_CRASH(void) = 5;
65
65
66
		void					 SM_NOTIFY(struct stat_chge) = 6;
67
66
	} = 1;
68
	} = 1;
67
} = 100024;
69
} = 100024;
68
70
Lines 119-122 Link Here
119
	string mon_name<SM_MAXSTRLEN>;
121
	string mon_name<SM_MAXSTRLEN>;
120
	int state;
122
	int state;
121
	opaque priv[16];		/* stored private information */
123
	opaque priv[16];		/* stored private information */
124
};
125
126
struct stat_chge {
127
	string mon_name<SM_MAXSTRLEN>;
128
	int state;
122
};
129
};
(-)statd.h (-14 lines)
Lines 35-54 Link Here
35
35
36
#include "sm_inter.h"
36
#include "sm_inter.h"
37
37
38
/* These pieces are missing from the distributed sm_inter.x, which	*/
39
/* omits the SM_NOTIFY procedure used between cooperating rpc.statd's	*/
40
41
#define SM_NOTIFY ((u_long)6)
42
extern void *sm_notify_1();
43
 
44
struct stat_chge
45
{
46
  char *mon_name;
47
  int state;
48
};
49
typedef struct stat_chge stat_chge;
50
bool_t xdr_stat_chge();
51
52
/* ------------------------------------------------------------------------- */
38
/* ------------------------------------------------------------------------- */
53
/*
39
/*
54
  Data structures for recording monitored hosts
40
  Data structures for recording monitored hosts

Return to bug 26373