Browse Source

added"custom".

Nicolas Cannasse 19 years ago
parent
commit
cf60f484d7
1 changed files with 1 additions and 0 deletions
  1. 1 0
      std/neko/net/Socket.hx

+ 1 - 0
std/neko/net/Socket.hx

@@ -34,6 +34,7 @@ class Socket {
 	private var __s : SocketHandle;
 	public var input(default,null) : SocketInput;
 	public var output(default,null) : SocketOutput;
+	public var custom : Dynamic;
 
 	public function new( ?s ) {
 		__s = if( s == null ) socket_new(false) else s;