Home | History | Annotate | Download | only in net
      1 /*
      2  * Copyright (C) 2013 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package java.net;
     18 
     19 import java.nio.charset.StandardCharsets;
     20 
     21 import static android.system.OsConstants.*;
     22 
     23 /**
     24  * An AF_UNIX address. See {@link InetAddress}.
     25  * @hide
     26  */
     27 public final class InetUnixAddress extends InetAddress {
     28   /**
     29    * Constructs an AF_UNIX InetAddress for the given path.
     30    */
     31   public InetUnixAddress(String path) {
     32     this(path.getBytes(StandardCharsets.UTF_8));
     33   }
     34 
     35   /**
     36    * Constructs an AF_UNIX InetAddress for the given path.
     37    */
     38   public InetUnixAddress(byte[] path) {
     39     super(AF_UNIX, path, null);
     40   }
     41 
     42   /**
     43    * Returns a string form of this InetAddress.
     44    */
     45   @Override public String toString() {
     46     return "InetUnixAddress[" + new String(ipaddress, StandardCharsets.UTF_8) + "]";
     47   }
     48 }
     49