diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-06-24 15:10:13 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-06-24 15:10:13 +0200 |
commit | f4f9d177f0a43f6a846414d34b6839a1b9b3319b (patch) | |
tree | 2a19cb5de05eacc1f649c08b6c29cf1eb1a44e85 /libguile | |
parent | f4db000c6081641f6ee611e293239817041bbac8 (diff) |
Remove references to 'inet-ntoa' and 'inet-aton'.
These procedures were removed in Guile 2.2 by commit
fc7bd367ab4b5027a7f80686b1e229c62e43c90b (May 2011).
* libguile/socket.h (scm_inet_aton, scm_inet_ntoa): Remove.
* module/system/repl/server.scm (make-tcp-server-socket): Use
'inet-pton' instead of 'inet-aton'.
* doc/ref/web.texi (HTTP): Likewise in 'declare-header!' example.
* doc/ref/posix.texi (Network Address Conversion): Remove documentation
of 'inet-ntoa' and 'inet-aton'.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/socket.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libguile/socket.h b/libguile/socket.h index d7c368a22..53db2c02d 100644 --- a/libguile/socket.h +++ b/libguile/socket.h @@ -3,7 +3,7 @@ #ifndef SCM_SOCKET_H #define SCM_SOCKET_H -/* Copyright (C) 1995,1996,1997,2000,2001, 2004, 2005, 2006, 2008, 2014 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1997,2000,2001, 2004, 2005, 2006, 2008, 2014, 2019 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -27,8 +27,6 @@ -SCM_API SCM scm_inet_aton (SCM address); -SCM_API SCM scm_inet_ntoa (SCM inetid); SCM_API SCM scm_inet_netof (SCM address); SCM_API SCM scm_lnaof (SCM address); SCM_API SCM scm_inet_makeaddr (SCM net, SCM lna); |