mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
14 lines
257 B
JavaScript
14 lines
257 B
JavaScript
//var net = require("net");
|
|
|
|
|
|
//var CRLF = "\r\n";
|
|
module.exports = Class(function(){
|
|
return {
|
|
init: function(port, hostname){
|
|
this.port = port || 11211;
|
|
this.hostname = hostname || "localhost";
|
|
this.buffer = "";
|
|
this.handle = null;
|
|
}
|
|
}
|
|
}) |