summaryrefslogtreecommitdiff
path: root/js/src/Ice/SocketOperation.js
blob: b028ccf59552614a6fc7f4111b85c9c6d3aff687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

const Ice = require("../Ice/ModuleRegistry").Ice;
Ice.SocketOperation =
{
    None: 0,
    Read: 1,
    Write: 2,
    Connect: 2 // Same as Write
};
module.exports.Ice = Ice;