* Syscall.cs: Update endfsent() and setfsent() declarations, as these must
[mono.git] / mcs / class / Mono.Posix / Mono.Unix / UnixEndPoint.cs
1 //
2 // Mono.Unix/UnixEndPoint: EndPoint derived class for AF_UNIX family sockets.
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 using System;
31 using System.Net;
32 using System.Net.Sockets;
33 using System.Text;
34
35 namespace Mono.Unix
36 {
37         [Serializable]
38         public class UnixEndPoint : EndPoint
39         {
40                 string filename;
41                 
42                 public UnixEndPoint (string filename)
43                 {
44                         this.filename = filename;
45                 }
46                 
47                 public string Filename {
48                         get {
49                                 return(filename);
50                         }
51                         set {
52                                 filename=value;
53                         }
54                 }
55
56                 public override AddressFamily AddressFamily {
57                         get { return AddressFamily.Unix; }
58                 }
59
60                 public override EndPoint Create (SocketAddress socketAddress)
61                 {
62                         int size = socketAddress.Size;
63                         byte [] bytes = new byte [size];
64                         for (int i = 0; i < size; i++) {
65                                 bytes [i] = socketAddress [i];
66                         }
67
68                         string name = Encoding.Default.GetString (bytes);
69                         return new UnixEndPoint (name);
70                 }
71
72                 public override SocketAddress Serialize ()
73                 {
74                         byte [] bytes = Encoding.Default.GetBytes (filename);
75                         SocketAddress sa = new SocketAddress (AddressFamily, bytes.Length + 2);
76                         // sa [0] -> family low byte, sa [1] -> family high byte
77                         for (int i = 0; i < bytes.Length; i++)
78                                 sa [i + 2] = bytes [i];
79
80                         return sa;
81                 }
82
83                 public override string ToString() {
84                         return(filename);
85                 }
86         }
87 }
88