diff options
Diffstat (limited to 'includes/external/school/node_modules/node-forge/flash/PooledSocket.as')
-rw-r--r-- | includes/external/school/node_modules/node-forge/flash/PooledSocket.as | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/includes/external/school/node_modules/node-forge/flash/PooledSocket.as b/includes/external/school/node_modules/node-forge/flash/PooledSocket.as new file mode 100644 index 0000000..15e3ae4 --- /dev/null +++ b/includes/external/school/node_modules/node-forge/flash/PooledSocket.as @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2009 Digital Bazaar, Inc. All rights reserved. + * + * @author Dave Longley + */ +package +{ + import flash.net.Socket; + + /** + * A helper class that contains the ID for a Socket. + */ + public class PooledSocket extends Socket + { + // the ID in the related socket pool + public var id:String; + } +} |