File tree Expand file tree Collapse file tree 2 files changed +27
-10
lines changed
Expand file tree Collapse file tree 2 files changed +27
-10
lines changed Original file line number Diff line number Diff line change @@ -52,16 +52,6 @@ type ListenerDetails struct {
5252// Config holds gateway client configuration.
5353type GatewayConfig = GatewayAddress
5454
55- // NVMeoFVolumeData holds the data required for an NVMe-oF volume.
56- type NVMeoFVolumeData struct {
57- SubsystemNQN string
58- NamespaceID uint32
59- NamespaceUUID string
60- HostNQN string
61- ListenerInfo ListenerDetails
62- GatewayManagementInfo GatewayConfig
63- }
64-
6555// GatewayClient wraps the gRPC client and connection details.
6656type GatewayRpcClient struct {
6757 config * GatewayConfig
Original file line number Diff line number Diff line change 1+ /*
2+ Copyright 2025 The Ceph-CSI Authors.
3+
4+ Licensed under the Apache License, Version 2.0 (the "License");
5+ you may not use this file except in compliance with the License.
6+ You may obtain a copy of the License at
7+
8+ http://www.apache.org/licenses/LICENSE-2.0
9+
10+ Unless required by applicable law or agreed to in writing, software
11+ distributed under the License is distributed on an "AS IS" BASIS,
12+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ See the License for the specific language governing permissions and
14+ limitations under the License.
15+ */
16+
17+ package nvmeof
18+
19+ // NVMeoFVolumeData holds the data required for an NVMe-oF volume.
20+ type NVMeoFVolumeData struct {
21+ SubsystemNQN string
22+ NamespaceID uint32
23+ NamespaceUUID string
24+ HostNQN string
25+ ListenerInfo ListenerDetails
26+ GatewayManagementInfo GatewayConfig
27+ }
You can’t perform that action at this time.
0 commit comments