blob: 28317711d1cbfd0baef31719d9a7061ca537f5d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.debug.dbgp.tests.service;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.net.Socket;
class ClientPackets {
public static void send(final Socket socket, final byte[] packet)
throws IOException {
OutputStream out = new BufferedOutputStream(socket.getOutputStream());
send(out, packet);
out.flush();
}
public static void send(OutputStream stream, byte[] initPacket)
throws IOException {
stream.write(String.valueOf(initPacket.length).getBytes());
stream.write(0);
stream.write(initPacket);
stream.write(0);
}
}