Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
71515510
Commit
71515510
authored
Jun 19, 2013
by
Christian Heimes
Browse files
Options
Browse Files
Download
Plain Diff
Issue #18259: Declare sethostname in socketmodule.c for AIX
parents
360b89ca
d2774c7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
Misc/NEWS
Misc/NEWS
+2
-0
Modules/socketmodule.c
Modules/socketmodule.c
+5
-0
No files found.
Misc/NEWS
View file @
71515510
...
@@ -123,6 +123,8 @@ Core and Builtins
...
@@ -123,6 +123,8 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
18259
:
Declare
sethostname
in
socketmodule
.
c
for
AIX
-
Issue
#
18147
:
Add
diagnostic
functions
to
ssl
.
SSLContext
().
get_ca_list
()
-
Issue
#
18147
:
Add
diagnostic
functions
to
ssl
.
SSLContext
().
get_ca_list
()
lists
all
loaded
CA
certificates
and
cert_store_stats
()
returns
amount
of
lists
all
loaded
CA
certificates
and
cert_store_stats
()
returns
amount
of
loaded
X
.509
certs
,
X
.509
CA
certs
and
CRLs
.
loaded
X
.509
certs
,
X
.509
CA
certs
and
CRLs
.
...
...
Modules/socketmodule.c
View file @
71515510
...
@@ -4066,6 +4066,11 @@ socket_sethostname(PyObject *self, PyObject *args)
...
@@ -4066,6 +4066,11 @@ socket_sethostname(PyObject *self, PyObject *args)
Py_buffer
buf
;
Py_buffer
buf
;
int
res
,
flag
=
0
;
int
res
,
flag
=
0
;
#ifdef _AIX
/* issue #18259, not declared in any useful header file */
extern
int
sethostname
(
const
char
*
,
size_t
);
#endif
if
(
!
PyArg_ParseTuple
(
args
,
"S:sethostname"
,
&
hnobj
))
{
if
(
!
PyArg_ParseTuple
(
args
,
"S:sethostname"
,
&
hnobj
))
{
PyErr_Clear
();
PyErr_Clear
();
if
(
!
PyArg_ParseTuple
(
args
,
"O&:sethostname"
,
if
(
!
PyArg_ParseTuple
(
args
,
"O&:sethostname"
,
...
...
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