Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
03d3e33a
Kaydet (Commit)
03d3e33a
authored
Mar 17, 2002
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Regenerated for Irix 6.5.
üst
5ae73c8f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
292 additions
and
23 deletions
+292
-23
ERRNO.py
Lib/plat-irix6/ERRNO.py
+18
-1
FILE.py
Lib/plat-irix6/FILE.py
+0
-0
IN.py
Lib/plat-irix6/IN.py
+274
-22
No files found.
Lib/plat-irix6/ERRNO.py
Dosyayı görüntüle @
03d3e33a
# Generated by h2py from /usr/include/sys/errno.h
# Generated by h2py from /usr/include/errno.h
# Included from sys/errno.h
# Included from standards.h
__KBASE
=
1000
__IRIXBASE
=
1000
__FTNBASE
=
4000
__FTNLAST
=
5999
EPERM
=
1
ENOENT
=
2
ESRCH
=
3
...
...
@@ -49,6 +53,7 @@ ENOCSI = 43
EL2HLT
=
44
EDEADLK
=
45
ENOLCK
=
46
ECKPT
=
47
EBADE
=
50
EBADR
=
51
EXFULL
=
52
...
...
@@ -138,7 +143,9 @@ EGROUPLOOP = 1006
ENOATTACH
=
1007
ENOTSUP
=
1008
ENOATTR
=
1009
EFSCORRUPTED
=
1010
EDIRCORRUPTED
=
1010
EWRONGFS
=
1011
EDQUOT
=
1133
ENFSREMOTE
=
1135
ECONTROLLER
=
1300
...
...
@@ -161,3 +168,13 @@ EINVALMODE = 1316
ECANTEXTENT
=
1317
EINVALTIME
=
1318
EDESTROYED
=
1319
EBDHDL
=
1400
EDELAY
=
1401
ENOBWD
=
1402
EBADRSPEC
=
1403
EBADTSPEC
=
1404
EBADFILT
=
1405
EMIGRATED
=
1500
EMIGRATING
=
1501
ECELLDOWN
=
1502
EMEMRETRY
=
1600
Lib/plat-irix6/FILE.py
Dosyayı görüntüle @
03d3e33a
This diff is collapsed.
Click to expand it.
Lib/plat-irix6/IN.py
Dosyayı görüntüle @
03d3e33a
# Generated by h2py from /usr/include/netinet/in.h
# Included from standards.h
# Included from sgidefs.h
_MIPS_ISA_MIPS1
=
1
_MIPS_ISA_MIPS2
=
2
...
...
@@ -9,25 +11,6 @@ _MIPS_SIM_ABI32 = 1
_MIPS_SIM_NABI32
=
2
_MIPS_SIM_ABI64
=
3
# Included from sys/endian.h
LITTLE_ENDIAN
=
1234
BIG_ENDIAN
=
4321
PDP_ENDIAN
=
3412
BYTE_ORDER
=
BIG_ENDIAN
BYTE_ORDER
=
LITTLE_ENDIAN
def
ntohl
(
x
):
return
(
x
)
def
ntohs
(
x
):
return
(
x
)
def
htonl
(
x
):
return
(
x
)
def
htons
(
x
):
return
(
x
)
def
htonl
(
x
):
return
ntohl
(
x
)
def
htons
(
x
):
return
ntohs
(
x
)
# Included from sys/bsd_types.h
# Included from sys/mkdev.h
...
...
@@ -42,21 +25,67 @@ MAXMIN = 0x3ffff
OLDDEV
=
0
NEWDEV
=
1
MKDEV_VER
=
NEWDEV
def
IS_STRING_SPEC_DEV
(
x
):
return
((
dev_t
)(
x
)
==
__makedev
(
MKDEV_VER
,
0
,
0
))
def
major
(
dev
):
return
__major
(
MKDEV_VER
,
dev
)
def
minor
(
dev
):
return
__minor
(
MKDEV_VER
,
dev
)
# Included from sys/select.h
# Included from standards.h
FD_SETSIZE
=
1024
__NBBY
=
8
# Included from string.h
NULL
=
0L
NBBY
=
8
# Included from sys/endian.h
LITTLE_ENDIAN
=
1234
BIG_ENDIAN
=
4321
PDP_ENDIAN
=
3412
_LITTLE_ENDIAN
=
1234
_BIG_ENDIAN
=
4321
_PDP_ENDIAN
=
3412
_BYTE_ORDER
=
_BIG_ENDIAN
_BYTE_ORDER
=
_LITTLE_ENDIAN
def
ntohl
(
x
):
return
(
x
)
def
ntohs
(
x
):
return
(
x
)
def
htonl
(
x
):
return
(
x
)
def
htons
(
x
):
return
(
x
)
def
htonl
(
x
):
return
ntohl
(
x
)
def
htons
(
x
):
return
ntohs
(
x
)
# Included from sys/types.h
# Included from sys/pthread.h
P_MYID
=
(
-
1
)
P_MYHOSTID
=
(
-
1
)
# Included from sys/cpumask.h
MAXCPU
=
128
def
CPUMASK_INDEX
(
bit
):
return
((
bit
)
>>
6
)
def
CPUMASK_SHFT
(
bit
):
return
((
bit
)
&
0x3f
)
def
CPUMASK_IS_ZERO
(
p
):
return
((
p
)
==
0
)
def
CPUMASK_IS_NONZERO
(
p
):
return
((
p
)
!=
0
)
# Included from sys/nodemask.h
def
CNODEMASK_IS_ZERO
(
p
):
return
((
p
)
==
0
)
def
CNODEMASK_IS_NONZERO
(
p
):
return
((
p
)
!=
0
)
IPPROTO_IP
=
0
IPPROTO_HOPOPTS
=
0
IPPROTO_ICMP
=
1
IPPROTO_IGMP
=
2
IPPROTO_GGP
=
3
...
...
@@ -64,22 +93,92 @@ IPPROTO_IPIP = 4
IPPROTO_ENCAP
=
IPPROTO_IPIP
IPPROTO_ST
=
5
IPPROTO_TCP
=
6
IPPROTO_UCL
=
7
IPPROTO_EGP
=
8
IPPROTO_IGP
=
9
IPPROTO_BBN_RCC_MON
=
10
IPPROTO_NVP_II
=
11
IPPROTO_PUP
=
12
IPPROTO_ARGUS
=
13
IPPROTO_EMCON
=
14
IPPROTO_XNET
=
15
IPPROTO_CHAOS
=
16
IPPROTO_UDP
=
17
IPPROTO_MUX
=
18
IPPROTO_DCN_MEAS
=
19
IPPROTO_HMP
=
20
IPPROTO_PRM
=
21
IPPROTO_IDP
=
22
IPPROTO_TRUNK_1
=
23
IPPROTO_TRUNK_2
=
24
IPPROTO_LEAF_1
=
25
IPPROTO_LEAF_2
=
26
IPPROTO_RDP
=
27
IPPROTO_IRTP
=
28
IPPROTO_TP
=
29
IPPROTO_NETBLT
=
30
IPPROTO_MFE_NSP
=
31
IPPROTO_MERIT_INP
=
32
IPPROTO_SEP
=
33
IPPROTO_3PC
=
34
IPPROTO_IDPR
=
35
IPPROTO_XTP
=
36
IPPROTO_DDP
=
37
IPPROTO_IDPR_CMTP
=
38
IPPROTO_TPPP
=
39
IPPROTO_IL
=
40
IPPROTO_IPV6
=
41
IPPROTO_ROUTING
=
43
IPPROTO_FRAGMENT
=
44
IPPROTO_RSVP
=
46
IPPROTO_ESP
=
50
IPPROTO_AH
=
51
IPPROTO_ICMPV6
=
58
IPPROTO_NONE
=
59
IPPROTO_DSTOPTS
=
60
IPPROTO_CFTP
=
62
IPPROTO_HELLO
=
63
IPPROTO_SAT_EXPAK
=
64
IPPROTO_KRYPTOLAN
=
65
IPPROTO_RVD
=
66
IPPROTO_IPPC
=
67
IPPROTO_SAT_MON
=
69
IPPROTO_VISA
=
70
IPPROTO_IPCV
=
71
IPPROTO_CPNX
=
72
IPPROTO_CPHB
=
73
IPPROTO_WSN
=
74
IPPROTO_PVP
=
75
IPPROTO_BR_SAT_MON
=
76
IPPROTO_ND
=
77
IPPROTO_WB_MON
=
78
IPPROTO_WB_EXPAK
=
79
IPPROTO_EON
=
80
IPPROTO_VMTP
=
81
IPPROTO_SECURE_VMTP
=
82
IPPROTO_VINES
=
83
IPPROTO_TTP
=
84
IPPROTO_NSFNET_IGP
=
85
IPPROTO_DGP
=
86
IPPROTO_TCF
=
87
IPPROTO_IGRP
=
88
IPPROTO_OSPF
=
89
IPPROTO_SPRITE_RPC
=
90
IPPROTO_LARP
=
91
IPPROTO_MTP
=
92
IPPROTO_AX25
=
93
IPPROTO_SWIPE
=
94
IPPROTO_MICP
=
95
IPPROTO_AES_SP3_D
=
96
IPPROTO_ETHERIP
=
97
IPPROTO_ENCAPHDR
=
98
IPPROTO_RAW
=
255
IPPROTO_MAX
=
256
IPPROTO_STP
=
257
IPPORT_RESERVED
=
1024
IPPORT_MAXPORT
=
65535
INET_ADDRSTRLEN
=
16
INET6_ADDRSTRLEN
=
46
def
IN_CLASSA
(
i
):
return
(((
__int32_t
)(
i
)
&
0x80000000
)
==
0
)
IN_CLASSA_NET
=
0xff000000
...
...
@@ -110,6 +209,137 @@ def IN_BADCLASS(i): return (((__int32_t)(i) & 0xf0000000) == 0xf0000000)
INADDR_NONE
=
0xffffffff
IN_LOOPBACKNET
=
127
IPNGVERSION
=
6
IPV6_FLOWINFO_FLOWLABEL
=
0x00ffffff
IPV6_FLOWINFO_PRIORITY
=
0x0f000000
IPV6_FLOWINFO_PRIFLOW
=
0x0fffffff
IPV6_FLOWINFO_SRFLAG
=
0x10000000
IPV6_FLOWINFO_VERSION
=
0xf0000000
IPV6_PRIORITY_UNCHARACTERIZED
=
0x00000000
IPV6_PRIORITY_FILLER
=
0x01000000
IPV6_PRIORITY_UNATTENDED
=
0x02000000
IPV6_PRIORITY_RESERVED1
=
0x03000000
IPV6_PRIORITY_BULK
=
0x04000000
IPV6_PRIORITY_RESERVED2
=
0x05000000
IPV6_PRIORITY_INTERACTIVE
=
0x06000000
IPV6_PRIORITY_CONTROL
=
0x07000000
IPV6_PRIORITY_8
=
0x08000000
IPV6_PRIORITY_9
=
0x09000000
IPV6_PRIORITY_10
=
0x0a000000
IPV6_PRIORITY_11
=
0x0b000000
IPV6_PRIORITY_12
=
0x0c000000
IPV6_PRIORITY_13
=
0x0d000000
IPV6_PRIORITY_14
=
0x0e000000
IPV6_PRIORITY_15
=
0x0f000000
IPV6_SRFLAG_STRICT
=
0x10000000
IPV6_SRFLAG_LOOSE
=
0x00000000
IPV6_VERSION
=
0x60000000
IPV6_FLOWINFO_FLOWLABEL
=
0xffffff00
IPV6_FLOWINFO_PRIORITY
=
0x0000000f
IPV6_FLOWINFO_PRIFLOW
=
0xffffff0f
IPV6_FLOWINFO_SRFLAG
=
0x00000010
IPV6_FLOWINFO_VERSION
=
0x000000f0
IPV6_PRIORITY_UNCHARACTERIZED
=
0x00000000
IPV6_PRIORITY_FILLER
=
0x00000001
IPV6_PRIORITY_UNATTENDED
=
0x00000002
IPV6_PRIORITY_RESERVED1
=
0x00000003
IPV6_PRIORITY_BULK
=
0x00000004
IPV6_PRIORITY_RESERVED2
=
0x00000005
IPV6_PRIORITY_INTERACTIVE
=
0x00000006
IPV6_PRIORITY_CONTROL
=
0x00000007
IPV6_PRIORITY_8
=
0x00000008
IPV6_PRIORITY_9
=
0x00000009
IPV6_PRIORITY_10
=
0x0000000a
IPV6_PRIORITY_11
=
0x0000000b
IPV6_PRIORITY_12
=
0x0000000c
IPV6_PRIORITY_13
=
0x0000000d
IPV6_PRIORITY_14
=
0x0000000e
IPV6_PRIORITY_15
=
0x0000000f
IPV6_SRFLAG_STRICT
=
0x00000010
IPV6_SRFLAG_LOOSE
=
0x00000000
IPV6_VERSION
=
0x00000060
def
IPV6_GET_FLOWLABEL
(
x
):
return
(
ntohl
(
x
)
&
0x00ffffff
)
def
IPV6_GET_PRIORITY
(
x
):
return
((
ntohl
(
x
)
>>
24
)
&
0xf
)
def
IPV6_GET_VERSION
(
x
):
return
((
ntohl
(
x
)
>>
28
)
&
0xf
)
def
IPV6_SET_FLOWLABEL
(
x
):
return
(
htonl
(
x
)
&
IPV6_FLOWINFO_FLOWLABEL
)
def
IPV6_SET_PRIORITY
(
x
):
return
(
htonl
((
x
&
0xf
)
<<
24
))
def
CLR_ADDR6
(
a
):
return
\
def
IS_ANYSOCKADDR
(
a
):
return
\
def
IS_ANYADDR6
(
a
):
return
\
def
IS_COMPATSOCKADDR
(
a
):
return
\
def
IS_COMPATADDR6
(
a
):
return
\
def
IS_LOOPSOCKADDR
(
a
):
return
\
def
IS_LOOPADDR6
(
a
):
return
\
def
IS_IPV4SOCKADDR
(
a
):
return
\
def
IS_IPV4ADDR6
(
a
):
return
\
def
IS_LOOPSOCKADDR
(
a
):
return
\
def
IS_LOOPADDR6
(
a
):
return
\
def
IS_IPV4SOCKADDR
(
a
):
return
\
def
IS_IPV4ADDR6
(
a
):
return
\
def
IS_LOCALADDR6
(
a
):
return
((
a
)
.
s6_addr8
[
0
]
==
0xfe
)
def
IS_LINKLADDR6
(
a
):
return
\
def
IS_SITELADDR6
(
a
):
return
\
def
IS_MULTIADDR6
(
a
):
return
((
a
)
.
s6_addr8
[
0
]
==
0xff
)
def
MADDR6_FLAGS
(
a
):
return
((
a
)
.
s6_addr8
[
1
]
>>
4
)
MADDR6_FLG_WK
=
0
MADDR6_FLG_TS
=
1
def
MADDR6_SCOPE
(
a
):
return
((
a
)
.
s6_addr8
[
1
]
&
0x0f
)
MADDR6_SCP_NODE
=
0x1
MADDR6_SCP_LINK
=
0x2
MADDR6_SCP_SITE
=
0x5
MADDR6_SCP_ORG
=
0x8
MADDR6_SCP_GLO
=
0xe
MADDR6_ALLNODES
=
1
MADDR6_ALLROUTERS
=
2
MADDR6_ALLHOSTS
=
3
def
IN6_IS_ADDR_UNSPECIFIED
(
p
):
return
IS_ANYADDR6
(
*
p
)
def
IN6_IS_ADDR_LOOPBACK
(
p
):
return
IS_LOOPADDR6
(
*
p
)
def
IN6_IS_ADDR_MULTICAST
(
p
):
return
IS_MULTIADDR6
(
*
p
)
def
IN6_IS_ADDR_LINKLOCAL
(
p
):
return
IS_LINKLADDR6
(
*
p
)
def
IN6_IS_ADDR_SITELOCAL
(
p
):
return
IS_SITELADDR6
(
*
p
)
def
IN6_IS_ADDR_V4MAPPED
(
p
):
return
IS_IPV4ADDR6
(
*
p
)
def
IN6_IS_ADDR_V4COMPAT
(
p
):
return
IS_COMPATADDR6
(
*
p
)
def
IN6_IS_ADDR_MC_NODELOCAL
(
p
):
return
\
def
IN6_IS_ADDR_MC_LINKLOCAL
(
p
):
return
\
def
IN6_IS_ADDR_MC_SITELOCAL
(
p
):
return
\
def
IN6_IS_ADDR_MC_ORGLOCAL
(
p
):
return
\
def
IN6_IS_ADDR_MC_GLOBAL
(
p
):
return
\
IP_OPTIONS
=
1
IP_HDRINCL
=
2
IP_TOS
=
3
...
...
@@ -128,6 +358,28 @@ IP_RSVP_VIF_ON = 26
IP_RSVP_VIF_OFF
=
27
IP_RSVP_ON
=
28
IP_SENDSRCADDR
=
36
IPV6_UNICAST_HOPS
=
IP_TTL
IPV6_MULTICAST_IF
=
IP_MULTICAST_IF
IPV6_MULTICAST_HOPS
=
IP_MULTICAST_TTL
IPV6_MULTICAST_LOOP
=
IP_MULTICAST_LOOP
IPV6_ADD_MEMBERSHIP
=
IP_ADD_MEMBERSHIP
IPV6_DROP_MEMBERSHIP
=
IP_DROP_MEMBERSHIP
IPV6_SENDIF
=
40
IPV6_NOPROBE
=
42
IPV6_RECVPKTINFO
=
43
IPV6_PKTINFO
=
44
IP_RECVTTL
=
45
IPV6_RECVHOPS
=
IP_RECVTTL
IPV6_CHECKSUM
=
46
ICMP6_FILTER
=
47
IPV6_HOPLIMIT
=
48
IPV6_HOPOPTS
=
49
IPV6_DSTOPTS
=
50
IPV6_RTHDR
=
51
IPV6_PKTOPTIONS
=
52
IPV6_NEXTHOP
=
53
IP_DEFAULT_MULTICAST_TTL
=
1
IP_DEFAULT_MULTICAST_LOOP
=
1
IP_MAX_MEMBERSHIPS
=
20
IPV6_RTHDR_LOOSE
=
0
IPV6_RTHDR_STRICT
=
1
IPV6_RTHDR_TYPE_0
=
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment