mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Silence warnings in MSVC++: hide unused variables, add constness back to
inet_pton/ntop, convert htons argument to u_short.
This commit is contained in:
parent
20f51a7b38
commit
c925b1538a
3 changed files with 14 additions and 7 deletions
|
@ -207,8 +207,8 @@ Socket methods:
|
|||
#endif /* USE_SSL */
|
||||
|
||||
#ifndef HAVE_INET_PTON
|
||||
int inet_pton (int af, char *src, void *dst);
|
||||
char *inet_ntop(int af, void *src, char *dst, socklen_t size);
|
||||
int inet_pton (int af, const char *src, void *dst);
|
||||
const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
|
||||
#endif
|
||||
|
||||
/* I know this is a bad practice, but it is the easiest... */
|
||||
|
@ -2948,7 +2948,7 @@ init_socket(void)
|
|||
/* Simplistic emulation code for inet_pton that only works for IPv4 */
|
||||
#ifndef HAVE_INET_PTON
|
||||
int
|
||||
inet_pton (int af, char *src, void *dst)
|
||||
inet_pton (int af, const char *src, void *dst)
|
||||
{
|
||||
if(af == AF_INET){
|
||||
long packed_addr;
|
||||
|
@ -2966,8 +2966,8 @@ inet_pton (int af, char *src, void *dst)
|
|||
return -1;
|
||||
}
|
||||
|
||||
char *
|
||||
inet_ntop(int af, void *src, char *dst, socklen_t size)
|
||||
const char *
|
||||
inet_ntop(int af, const void *src, char *dst, socklen_t size)
|
||||
{
|
||||
if (af == AF_INET) {
|
||||
struct in_addr packed_addr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue