29 lines
565 B
Objective-C
29 lines
565 B
Objective-C
//
|
|
// JMAirKissEncoder.h
|
|
// UdpEchoClient
|
|
//
|
|
// Created by shengxiao on 16/2/27.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface JMAirKissEncoder : NSObject
|
|
/**
|
|
* 创建AirKiss数据
|
|
*
|
|
* @param ssid <#ssid description#>
|
|
* @param psd <#psd description#>
|
|
*
|
|
* @return 装载要发送的每条数据的长度的数组
|
|
*/
|
|
- (NSMutableArray *)createAirKissEncorderWithSSID:(NSString *)ssid
|
|
password:(NSString *)password;
|
|
|
|
/**
|
|
*@description 随机数
|
|
*/
|
|
@property (nonatomic,readonly) UInt8 randomChar;
|
|
|
|
@end
|