diff options
author | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2012-11-07 16:10:09 +0000 |
---|---|---|
committer | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2012-11-07 16:10:09 +0000 |
commit | df6e92ecbebd29845bd2cbd7f281f2bf20d4fe9f (patch) | |
tree | 871e25d9c533d8030c1e8659a28eb781bb0ae06e /network_io | |
parent | ac2c314d08a903253633e0b4c14ba0b004f9db1a (diff) | |
download | libapr-df6e92ecbebd29845bd2cbd7f281f2bf20d4fe9f.tar.gz |
merge r1406690 from trunk:
apr_socket_accept_filter: Return success when trying to again set the filter
to the same value as before.
Use apr_cpystrn().
PR: 37863 (warning message from Apache httpd during restart)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1406693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'network_io')
-rw-r--r-- | network_io/unix/sockopt.c | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/network_io/unix/sockopt.c b/network_io/unix/sockopt.c index c8da6d108..6ce4b911e 100644 --- a/network_io/unix/sockopt.c +++ b/network_io/unix/sockopt.c @@ -401,8 +401,25 @@ apr_status_t apr_socket_accept_filter(apr_socket_t *sock, char *nonconst_name, const char *args = nonconst_args; struct accept_filter_arg af; - strncpy(af.af_name, name, 16); - strncpy(af.af_arg, args, 256 - 16); + socklen_t optlen = sizeof(af); + + /* FreeBSD returns an error if the filter is already set; ignore + * this call if we previously set it to the same value. + */ + if ((getsockopt(sock->socketdes, SOL_SOCKET, SO_ACCEPTFILTER, + &af, &optlen)) == 0) { + if (!strcmp(name, af.af_name) && !strcmp(args, af.af_arg)) { + return APR_SUCCESS; + } + } + + /* Uhh, at least in FreeBSD 9 the fields are declared as arrays of + * these lengths; did sizeof not work in some ancient release? + * + * FreeBSD kernel sets the last byte to a '\0'. + */ + apr_cpystrn(af.af_name, name, 16); + apr_cpystrn(af.af_arg, args, 256 - 16); if ((setsockopt(sock->socketdes, SOL_SOCKET, SO_ACCEPTFILTER, &af, sizeof(af))) < 0) { |