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"
|
2017-02-10 04:23:08 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTBridge.h>
|
|
|
|
#import <React/RCTEventDispatcher.h>
|
2015-05-09 21:55:49 +00:00
|
|
|
|
2015-05-10 14:26:29 +00:00
|
|
|
@interface UdpSockets : NSObject<SocketClientDelegate, RCTBridgeModule>
|
2015-05-09 21:55:49 +00:00
|
|
|
|
|
|
|
@end
|