OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 library mdns.src.constants; | 5 library mdns.src.constants; |
6 | 6 |
7 import 'dart:io'; | 7 import 'dart:io'; |
8 | 8 |
9 InternetAddress mDnsAddress = new InternetAddress('224.0.0.251'); | 9 InternetAddress mDnsAddress = new InternetAddress('224.0.0.251'); |
10 const int mDnsPort = 5353; | 10 const int mDnsPort = 5353; |
11 | 11 |
(...skipping 15 matching lines...) Expand all Loading... |
27 static const int A = 1; | 27 static const int A = 1; |
28 static const int AAAA = 28; | 28 static const int AAAA = 28; |
29 static const int PTR = 12; | 29 static const int PTR = 12; |
30 static const int SRV = 33; | 30 static const int SRV = 33; |
31 static const int TXT = 16; | 31 static const int TXT = 16; |
32 } | 32 } |
33 | 33 |
34 class RRClass { | 34 class RRClass { |
35 static const int IN = 1; | 35 static const int IN = 1; |
36 } | 36 } |
OLD | NEW |