blob: 96c945115f95ff64c4e6793f27695b2f6a2bbf93 [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion int send(List<int> buffer, InternetAddress address, int port)
/// Send a datagram.
///
/// Returns the number of bytes written. This will always be either the size of
/// buffer or 0.
///
/// @description Checks that method send returns 0 if buffer length is 0.
/// @author sgrekhov@unipro.ru
import "dart:io";
import "../http_utils.dart";
import "../../../Utils/expect.dart";
var localhost = InternetAddress.loopbackIPv4;
main() async {
RawDatagramSocket producer = await RawDatagramSocket.bind(localhost, 0);
RawDatagramSocket receiver = await RawDatagramSocket.bind(localhost, 0);
for (int i = 0; i < 5; i++) {
int sent = await sendDatagram(producer, [], localhost, receiver.port);
Expect.equals(0, sent);
}
producer.close();
receiver.close();
}