aboutsummaryrefslogtreecommitdiffstats
path: root/net/phonet/pep.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/phonet/pep.c')
-rw-r--r--net/phonet/pep.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/net/phonet/pep.c b/net/phonet/pep.c
index 671effb4ea15..68e635f11de8 100644
--- a/net/phonet/pep.c
+++ b/net/phonet/pep.c
@@ -167,15 +167,6 @@ static int pipe_handler_send_created_ind(struct sock *sk)
167 data, 4, GFP_ATOMIC); 167 data, 4, GFP_ATOMIC);
168} 168}
169 169
170#ifdef CONFIG_PHONET_PIPECTRLR
171static int pipe_handler_enable_pipe(struct sock *sk, int enable)
172{
173 u8 id = enable ? PNS_PEP_ENABLE_REQ : PNS_PEP_DISABLE_REQ;
174
175 return pipe_handler_request(sk, id, PAD, NULL, 0);
176}
177#endif
178
179static int pep_accept_conn(struct sock *sk, struct sk_buff *skb) 170static int pep_accept_conn(struct sock *sk, struct sk_buff *skb)
180{ 171{
181 static const u8 data[20] = { 172 static const u8 data[20] = {
@@ -968,16 +959,6 @@ static int pep_setsockopt(struct sock *sk, int level, int optname,
968 } 959 }
969 goto out_norel; 960 goto out_norel;
970 961
971#ifdef CONFIG_PHONET_PIPECTRLR
972 case PNPIPE_ENABLE:
973 if ((1 << sk->sk_state) & ~(TCPF_SYN_RECV|TCPF_ESTABLISHED)) {
974 err = -ENOTCONN;
975 break;
976 }
977 err = pipe_handler_enable_pipe(sk, val);
978 break;
979#endif
980
981 default: 962 default:
982 err = -ENOPROTOOPT; 963 err = -ENOPROTOOPT;
983 } 964 }
@@ -1013,12 +994,6 @@ static int pep_getsockopt(struct sock *sk, int level, int optname,
1013 return -EINVAL; 994 return -EINVAL;
1014 break; 995 break;
1015 996
1016#ifdef CONFIG_PHONET_PIPECTRLR
1017 case PNPIPE_ENABLE:
1018 val = sk->sk_state == TCP_ESTABLISHED;
1019 break;
1020#endif
1021
1022 default: 997 default:
1023 return -ENOPROTOOPT; 998 return -ENOPROTOOPT;
1024 } 999 }