Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: pkg/mdns/lib/src/constants.dart

Issue 1649703002: Update project authors statements to Dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/mdns/lib/mdns.dart ('k') | pkg/mdns/lib/src/lookup_resolver.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/mdns/lib/mdns.dart ('k') | pkg/mdns/lib/src/lookup_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698