diff options
author | Volker Lendecke <vlendec@samba.org> | 2003-11-07 09:03:02 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2003-11-07 09:03:02 +0000 |
commit | d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3 (patch) | |
tree | 12e0941a99f4b6c49de0156a1613a22d41e2794e /source3/lib/access.c | |
parent | c22afa7d97b8fe2fc00aa5da73ed1d2d8669cd1c (diff) | |
download | samba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.tar.gz samba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.tar.xz samba-d5573ccde3b5c39eb9a4637d5a9d7a95b66d86e3.zip |
Simple rename of get_socket_addr to get_peer_addr and get_socket_name to
get_peer_name. This is to get closer to the getsockname/getpeername system
functions.
Next step will be the %i macro for the local IP address. I still want to play
%L-games in times of port 445.
Volker
(This used to be commit d7162122eaf5d897e5de51604e431bfbaa20e905)
Diffstat (limited to 'source3/lib/access.c')
-rw-r--r-- | source3/lib/access.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/lib/access.c b/source3/lib/access.c index 62414726fb0..a642a92d716 100644 --- a/source3/lib/access.c +++ b/source3/lib/access.c @@ -311,21 +311,21 @@ BOOL check_access(int sock, const char **allow_list, const char **deny_list) if (only_ipaddrs_in_list(allow_list) && only_ipaddrs_in_list(deny_list)) { only_ip = True; DEBUG (3, ("check_access: no hostnames in host allow/deny list.\n")); - ret = allow_access(deny_list,allow_list, "", get_socket_addr(sock)); + ret = allow_access(deny_list,allow_list, "", get_peer_addr(sock)); } else { DEBUG (3, ("check_access: hostnames in host allow/deny list.\n")); - ret = allow_access(deny_list,allow_list, get_socket_name(sock,True), - get_socket_addr(sock)); + ret = allow_access(deny_list,allow_list, get_peer_name(sock,True), + get_peer_addr(sock)); } if (ret) { DEBUG(2,("Allowed connection from %s (%s)\n", - only_ip ? "" : get_socket_name(sock,True), - get_socket_addr(sock))); + only_ip ? "" : get_peer_name(sock,True), + get_peer_addr(sock))); } else { DEBUG(0,("Denied connection from %s (%s)\n", - only_ip ? "" : get_socket_name(sock,True), - get_socket_addr(sock))); + only_ip ? "" : get_peer_name(sock,True), + get_peer_addr(sock))); } } |