Rename accept filter getopt/setopt functions, so that they are prefixed

with module name and match other functions in the module.  There is no
functional change.
This commit is contained in:
Gleb Smirnoff 2017-06-02 17:49:21 +00:00
parent 810951ddc9
commit 971af2a311
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=319505
3 changed files with 7 additions and 7 deletions

View File

@ -161,7 +161,7 @@ accept_filt_generic_mod_event(module_t mod, int event, void *data)
}
int
do_getopt_accept_filter(struct socket *so, struct sockopt *sopt)
accept_filt_getopt(struct socket *so, struct sockopt *sopt)
{
struct accept_filter_arg *afap;
int error;
@ -189,7 +189,7 @@ do_getopt_accept_filter(struct socket *so, struct sockopt *sopt)
}
int
do_setopt_accept_filter(struct socket *so, struct sockopt *sopt)
accept_filt_setopt(struct socket *so, struct sockopt *sopt)
{
struct accept_filter_arg *afap;
struct accept_filter *afp;

View File

@ -452,7 +452,7 @@ sodealloc(struct socket *so)
&so->so_snd.sb_hiwat, 0, RLIM_INFINITY);
/* remove accept filter if one is present. */
if (so->so_accf != NULL)
do_setopt_accept_filter(so, NULL);
accept_filt_setopt(so, NULL);
#ifdef MAC
mac_socket_destroy(so);
#endif
@ -2526,7 +2526,7 @@ sosetopt(struct socket *so, struct sockopt *sopt)
} else {
switch (sopt->sopt_name) {
case SO_ACCEPTFILTER:
error = do_setopt_accept_filter(so, sopt);
error = accept_filt_setopt(so, sopt);
if (error)
goto bad;
break;
@ -2784,7 +2784,7 @@ sogetopt(struct socket *so, struct sockopt *sopt)
} else {
switch (sopt->sopt_name) {
case SO_ACCEPTFILTER:
error = do_getopt_accept_filter(so, sopt);
error = accept_filt_getopt(so, sopt);
break;
case SO_LINGER:

View File

@ -64,8 +64,8 @@ int sooptcopyout(struct sockopt *sopt, const void *buf, size_t len);
int soopt_getm(struct sockopt *sopt, struct mbuf **mp);
int soopt_mcopyin(struct sockopt *sopt, struct mbuf *m);
int soopt_mcopyout(struct sockopt *sopt, struct mbuf *m);
int do_getopt_accept_filter(struct socket *so, struct sockopt *sopt);
int do_setopt_accept_filter(struct socket *so, struct sockopt *sopt);
int accept_filt_getopt(struct socket *, struct sockopt *);
int accept_filt_setopt(struct socket *, struct sockopt *);
int so_setsockopt(struct socket *so, int level, int optname,
void *optval, size_t optlen);