summaryrefslogtreecommitdiff
path: root/js/src/Ice/SocketOperation.js
blob: 6e45a494dcf98401b31bd3d3a86f42d41a70b67b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

(function(global){
    var Ice = global.Ice || {};
    
    var SocketOperation = 
    {
        None: 0,
        Read: 1,
        Write: 2,
        Connect: 2 // Same as Write
    };

    Ice.SocketOperation = SocketOperation;
    global.Ice = Ice;
}(typeof (global) === "undefined" ? window : global));