mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
Rename NWFramwork folder name to a more proper name WiFiCommon
PiperOrigin-RevId: 728865577
This commit is contained in:
committed by
Copybara-Service
parent
e7f45020bb
commit
0c1b0ae1d9
@@ -35,12 +35,12 @@ objc_library(
|
||||
"GNCLeaks.h",
|
||||
"GNCLeaks.m",
|
||||
"GNCMConnection.m",
|
||||
"NWFramework/GNCIPv4Address.m",
|
||||
"NWFramework/GNCNWFramework.m",
|
||||
"NWFramework/GNCNWFrameworkError.m",
|
||||
"NWFramework/GNCNWFrameworkServerSocket.m",
|
||||
"NWFramework/GNCNWFrameworkServerSocket+Internal.h",
|
||||
"NWFramework/GNCNWFrameworkSocket.m",
|
||||
"WiFiCommon/GNCIPv4Address.m",
|
||||
"WiFiCommon/GNCNWFramework.m",
|
||||
"WiFiCommon/GNCNWFrameworkError.m",
|
||||
"WiFiCommon/GNCNWFrameworkServerSocket.m",
|
||||
"WiFiCommon/GNCNWFrameworkServerSocket+Internal.h",
|
||||
"WiFiCommon/GNCNWFrameworkSocket.m",
|
||||
],
|
||||
hdrs = [
|
||||
"BLEv2/GNCBLEError.h",
|
||||
@@ -55,11 +55,11 @@ objc_library(
|
||||
"Ble/GNCMBleConnection.h",
|
||||
"Ble/GNCMBleUtils.h",
|
||||
"GNCMConnection.h",
|
||||
"NWFramework/GNCIPv4Address.h",
|
||||
"NWFramework/GNCNWFramework.h",
|
||||
"NWFramework/GNCNWFrameworkError.h",
|
||||
"NWFramework/GNCNWFrameworkServerSocket.h",
|
||||
"NWFramework/GNCNWFrameworkSocket.h",
|
||||
"WiFiCommon/GNCIPv4Address.h",
|
||||
"WiFiCommon/GNCNWFramework.h",
|
||||
"WiFiCommon/GNCNWFrameworkError.h",
|
||||
"WiFiCommon/GNCNWFrameworkServerSocket.h",
|
||||
"WiFiCommon/GNCNWFrameworkSocket.h",
|
||||
],
|
||||
deps = [
|
||||
"//internal/platform/implementation/apple:Shared",
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCIPv4Address.h"
|
||||
|
||||
@implementation GNCIPv4Address
|
||||
|
||||
+6
-6
@@ -12,16 +12,16 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFramework.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFramework.h"
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <Network/Network.h>
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkError.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket+Internal.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkError.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket+Internal.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkSocket.h"
|
||||
#import "GoogleToolboxForMac/GTMLogger.h"
|
||||
|
||||
// An arbitrary timeout that should be pretty lenient.
|
||||
+1
-1
@@ -12,6 +12,6 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkError.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkError.h"
|
||||
|
||||
NSErrorDomain const GNCNWFrameworkErrorDomain = @"com.google.nearby.network.error";
|
||||
+1
-1
@@ -14,7 +14,7 @@
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket.h"
|
||||
|
||||
@interface GNCNWFrameworkServerSocket (Internal)
|
||||
|
||||
+5
-5
@@ -12,7 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket.h"
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <Network/Network.h>
|
||||
@@ -22,10 +22,10 @@
|
||||
#include <netdb.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkError.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket+Internal.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkError.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket+Internal.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkSocket.h"
|
||||
#import "GoogleToolboxForMac/GTMLogger.h"
|
||||
|
||||
@interface GNCNWFrameworkServerSocket ()
|
||||
+1
-1
@@ -12,7 +12,7 @@
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkSocket.h"
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <Network/Network.h>
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCIPv4Address.h"
|
||||
|
||||
@interface GNCIPv4AddressTest : XCTestCase
|
||||
@end
|
||||
|
||||
@@ -19,10 +19,10 @@
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFramework.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/NWFramework/GNCNWFrameworkSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCIPv4Address.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFramework.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkServerSocket.h"
|
||||
#import "internal/platform/implementation/apple/Mediums/WiFiCommon/GNCNWFrameworkSocket.h"
|
||||
#import "GoogleToolboxForMac/GTMLogger.h"
|
||||
|
||||
namespace nearby {
|
||||
|
||||
Reference in New Issue
Block a user