package com.hdl.sdk.link.socket.udp;
|
|
|
import android.net.wifi.WifiManager;
|
|
import com.hdl.sdk.link.socket.codec.IHandleMessage;
|
|
/**
|
* Created by hxb on 2021/12/12.
|
*/
|
public class UdpSocketOptions {
|
|
//处理数据
|
private IHandleMessage handleMessage;
|
private WifiManager wifiManager;
|
private String groupAddress="239.0.168.188";//组播放地址
|
private int soTimeOut=10;
|
|
public IHandleMessage getHandleMessage() {
|
return handleMessage;
|
}
|
|
public void setHandleMessage(IHandleMessage handleMessage) {
|
this.handleMessage = handleMessage;
|
}
|
|
public WifiManager getWifiManager() {
|
return wifiManager;
|
}
|
|
public void setWifiManager(WifiManager wifiManager) {
|
this.wifiManager = wifiManager;
|
}
|
|
public String getGroupAddress() {
|
return groupAddress;
|
}
|
|
public void setGroupAddress(String groupAddress) {
|
this.groupAddress = groupAddress;
|
}
|
|
public int getSoTimeOut() {
|
return soTimeOut;
|
}
|
|
public void setSoTimeOut(int soTimeOut) {
|
this.soTimeOut = soTimeOut;
|
}
|
}
|