wjc
2025-01-07 90d5f028ccdaaaf64286f9d632cb335a4d0544b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
    }
}