1 /*
2 * Copyright (c) 2024 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "lnn_lane_vap_info.h"
17 #include "softbus_errcode.h"
18
LnnInitVapInfo(void)19 int32_t LnnInitVapInfo(void)
20 {
21 return SOFTBUS_NOT_IMPLEMENT;
22 }
23
LnnDeinitVapInfo(void)24 void LnnDeinitVapInfo(void)
25 {
26 return;
27 }
28
LnnAddLocalVapInfo(LnnVapType type,const LnnVapAttr * vapAttr)29 int32_t LnnAddLocalVapInfo(LnnVapType type, const LnnVapAttr *vapAttr)
30 {
31 (void)type;
32 (void)vapAttr;
33 return SOFTBUS_NOT_IMPLEMENT;
34 }
35
LnnDeleteLocalVapInfo(LnnVapType type)36 int32_t LnnDeleteLocalVapInfo(LnnVapType type)
37 {
38 (void)type;
39 return SOFTBUS_NOT_IMPLEMENT;
40 }
41
LnnGetLocalVapInfo(LnnVapType type,LnnVapAttr * vapAttr)42 int32_t LnnGetLocalVapInfo(LnnVapType type, LnnVapAttr *vapAttr)
43 {
44 (void)type;
45 (void)vapAttr;
46 return SOFTBUS_NOT_IMPLEMENT;
47 }
48
LnnAddRemoteVapInfo(const char * udid,LnnVapType type,const LnnVapAttr * vapAttr)49 int32_t LnnAddRemoteVapInfo(const char *udid, LnnVapType type, const LnnVapAttr *vapAttr)
50 {
51 (void)udid;
52 (void)type;
53 (void)vapAttr;
54 return SOFTBUS_NOT_IMPLEMENT;
55 }
56
LnnDeleteRemoteVapInfo(const char * udid)57 int32_t LnnDeleteRemoteVapInfo(const char *udid)
58 {
59 (void)udid;
60 return SOFTBUS_NOT_IMPLEMENT;
61 }
62
LnnGetRemoteVapInfo(const char * udid,LnnVapType type,LnnVapAttr * vapAttr)63 int32_t LnnGetRemoteVapInfo(const char *udid, LnnVapType type, LnnVapAttr *vapAttr)
64 {
65 (void)udid;
66 (void)type;
67 (void)vapAttr;
68 return SOFTBUS_NOT_IMPLEMENT;
69 }
70
LnnGetLocalPreferChannel(void)71 int32_t LnnGetLocalPreferChannel(void)
72 {
73 return SOFTBUS_NOT_IMPLEMENT;
74 }
75
LnnGetLocalChannelCode(void)76 int32_t LnnGetLocalChannelCode(void)
77 {
78 return SOFTBUS_NOT_IMPLEMENT;
79 }
80
LnnAddRemoteChannelCode(const char * udid,int32_t channelCode)81 int32_t LnnAddRemoteChannelCode(const char *udid, int32_t channelCode)
82 {
83 (void)udid;
84 (void)channelCode;
85 return SOFTBUS_NOT_IMPLEMENT;
86 }
87
LnnGetRecommendChannel(const char * udid,int32_t * preferChannel)88 int32_t LnnGetRecommendChannel(const char *udid, int32_t *preferChannel)
89 {
90 (void)udid;
91 (void)preferChannel;
92 return SOFTBUS_NOT_IMPLEMENT;
93 }