2015-05-09 21:55:49 +00:00
|
|
|
//
|
|
|
|
// RCTUDP.h
|
|
|
|
// react-native-udp
|
|
|
|
//
|
|
|
|
// Created by Mark Vayngrib on 5/8/15.
|
|
|
|
// Copyright (c) 2015 Tradle, Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
2015-05-10 14:26:29 +00:00
|
|
|
#import <Availability.h>
|
|
|
|
#import "GCDAsyncUdpSocket.h"
|
|
|
|
#import "UdpSocketClient.h"
|
2015-05-09 21:55:49 +00:00
|
|
|
#import "RCTBridgeModule.h"
|
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTEventDispatcher.h"
|
|
|
|
|
2015-05-10 14:26:29 +00:00
|
|
|
@interface UdpSockets : NSObject<SocketClientDelegate, RCTBridgeModule>
|
2015-05-09 21:55:49 +00:00
|
|
|
|
|
|
|
@property(retain, nonatomic)NSMutableDictionary *clients;
|
|
|
|
|
|
|
|
@end
|