Skip to content

Commit

Permalink
Test 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mozafari committed Jun 15, 2019
1 parent cd83813 commit aa76a3f
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@ private void writeFrame0(WebSocketFrame frame) throws IOException
private void writeFrame1(WebSocketFrame frame) throws IOException
{
// Frames sent from a client are always masked.
int b;
if (WebSocket.useMask) {
b = 0x80;
} else {
b = 0x00;
}
int b = 0x80;

int len = frame.getPayloadLength();

Expand Down

0 comments on commit aa76a3f

Please sign in to comment.