This file is indexed.

/usr/include/wine/windows/af_irda.h is in libwine-dev 3.0-1ubuntu1.

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
/*
 * Copyright 2009 Juan Lang
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */
#ifndef AF_IRDA_H
#define AF_IRDA_H

typedef struct _IRDA_DEVICE_INFO
{
    UCHAR irdaDeviceID[4];
    char  irdaDeviceName[22];
    UCHAR irdaDeviceHints1;
    UCHAR irdaDeviceHints2;
    UCHAR irdaCharSet;
} IRDA_DEVICE_INFO, *PIRDA_DEVICE_INFO;

typedef struct _DEVICELIST
{
    ULONG            numDevice;
    IRDA_DEVICE_INFO Device[1];
} DEVICELIST, *PDEVICELIST;

typedef struct _SOCKADDR_IRDA
{
    USHORT irdaAddressFamily;
    UCHAR  irdaDeviceID[4];
    char   irdaServiceName[25];
} SOCKADDR_IRDA, *PSOCKADDR_IRDA, *LPSOCKADDR_IRDA;

#ifdef USE_WS_PREFIX

/* Socket levels and options */
#define WS_SOL_IRLMP 0xff

#define WS_IRLMP_ENUMDEVICES    ((ULONG)0x10)
#define WS_IRLMP_IAS_SET        ((ULONG)0x11)
#define WS_IRLMP_IAS_QUERY      ((ULONG)0x12)
#define WS_IRLMP_SEND_PDU_LEN   ((ULONG)0x13)
#define WS_IRLMP_EXCLUSIVE_MODE ((ULONG)0x14)
#define WS_IRLMP_IRLPT_MODE     ((ULONG)0x15)
#define WS_IRLMP_9WIRE_MODE     ((ULONG)0x16)
#define WS_IRLMP_TINYTP_MODE    ((ULONG)0x17)
#define WS_IRLMP_PARAMETERS     ((ULONG)0x18)
#define WS_IRLMP_DISCOVER_MODE  ((ULONG)0x19)
#define WS_IRLMP_SHARP_MODE     ((ULONG)0x20)

#define WS_IAS_MAX_CLASSNAME    64
#define WS_IAS_MAX_ATTRIBNAME   256

#else

/* Socket levels and options */
#define SOL_IRLMP 0xff

#define IRLMP_ENUMDEVICES    ((ULONG)0x10)
#define IRLMP_IAS_SET        ((ULONG)0x11)
#define IRLMP_IAS_QUERY      ((ULONG)0x12)
#define IRLMP_SEND_PDU_LEN   ((ULONG)0x13)
#define IRLMP_EXCLUSIVE_MODE ((ULONG)0x14)
#define IRLMP_IRLPT_MODE     ((ULONG)0x15)
#define IRLMP_9WIRE_MODE     ((ULONG)0x16)
#define IRLMP_TINYTP_MODE    ((ULONG)0x17)
#define IRLMP_PARAMETERS     ((ULONG)0x18)
#define IRLMP_DISCOVER_MODE  ((ULONG)0x19)
#define IRLMP_SHARP_MODE     ((ULONG)0x20)

#define IAS_MAX_CLASSNAME    64
#define IAS_MAX_ATTRIBNAME   256

#endif

#define IAS_MAX_OCTET_STRING 1024
#define IAS_MAX_USER_STRING  256

#define LmCharSetASCII      0x00
#define LmCharSetISO_8859_1 0x01
#define LmCharSetISO_8859_2 0x02
#define LmCharSetISO_8859_3 0x03
#define LmCharSetISO_8859_4 0x04
#define LmCharSetISO_8859_5 0x05
#define LmCharSetISO_8859_6 0x06
#define LmCharSetISO_8859_7 0x07
#define LmCharSetISO_8859_8 0x08
#define LmCharSetISO_8859_9 0x09
#define LmCharSetUNICODE    0xff

#endif /* AF_IRDA_H */