-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathhercifc.h
35 lines (30 loc) · 1.07 KB
/
hercifc.h
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
/* HERCIFC.H (c) Copyright Roger Bowler, 2000-2012 */
/* (c) Copyright James A. Pierson, 2002-2009 */
/* Hercules Interface Control Program */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
#ifndef __HERCIFC_H_
#define __HERCIFC_H_
#include "hifr.h" /* need struct hifr */
#define HERCIFC_CMD "hercifc"
typedef struct _CTLREQ
{
long iType;
int iProcID;
unsigned long int iCtlOp;
char szIFName[IFNAMSIZ];
union
{
struct hifr hifr;
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__SOLARIS__)
struct rtentry rtentry;
#endif
}
iru;
}
CTLREQ, *PCTLREQ;
#define CTLREQ_SIZE sizeof( CTLREQ )
#define CTLREQ_OP_DONE 0
#endif // __HERCIFC_H_