/* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.server.connectivity.mdns; import android.annotation.NonNull; import android.annotation.Nullable; import android.net.Network; import android.os.Looper; import java.io.IOException; import java.net.DatagramPacket; import java.util.List; /** * Base class for multicast socket client. * * @hide */ public interface MdnsSocketClientBase { /*** Start mDns discovery on given network. */ default void startDiscovery() throws IOException { } /*** Stop mDns discovery. */ default void stopDiscovery() { } /*** Set callback for receiving mDns response */ void setCallback(@Nullable Callback callback); /** * Send mDNS request packets via given network that asks for multicast response. */ void sendPacketRequestingMulticastResponse(@NonNull List packets, boolean onlyUseIpv6OnIpv6OnlyNetworks); /** * Send mDNS request packets via given network that asks for unicast response. */ void sendPacketRequestingUnicastResponse(@NonNull List packets, boolean onlyUseIpv6OnIpv6OnlyNetworks); /*** Notify that the given network is requested for mdns discovery / resolution */ void notifyNetworkRequested(@NonNull MdnsServiceBrowserListener listener, @Nullable Network network, @NonNull SocketCreationCallback socketCreationCallback); /*** Notify that the network is unrequested */ default void notifyNetworkUnrequested(@NonNull MdnsServiceBrowserListener listener) { } /*** Gets looper that used by the socket client */ default Looper getLooper() { return null; } /** Returns whether the socket client support requesting per network */ boolean supportsRequestingSpecificNetworks(); /*** Callback for mdns response */ interface Callback { /*** Receive a mdns response */ void onResponseReceived(@NonNull MdnsPacket packet, @NonNull SocketKey socketKey); /*** Parse a mdns response failed */ void onFailedToParseMdnsResponse(int receivedPacketNumber, int errorCode, @NonNull SocketKey socketKey); } /*** Callback for requested socket creation */ interface SocketCreationCallback { /*** Notify requested socket is created */ void onSocketCreated(@NonNull SocketKey socketKey); /*** Notify requested socket is destroyed */ void onSocketDestroyed(@NonNull SocketKey socketKey); } }