]> git.mxchange.org Git - simgear.git/blobdiff - simgear/io/sg_netChat.hxx
SGPath: fix creating paths with permission checker.
[simgear.git] / simgear / io / sg_netChat.hxx
index e9ab2e039d9384aa9936e45433dcf80083c93c7c..3a5c08a6fd2db02f144de56cb82bf04187e891b4 100644 (file)
@@ -16,7 +16,7 @@
  
      You should have received a copy of the GNU Library General Public
      License along with this library; if not, write to the Free Software
-     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
  
      For further information visit http://plib.sourceforge.net
 
@@ -68,16 +68,26 @@ namespace simgear
 
 class NetChat : public NetBufferChannel
 {
-  char* terminator;
-  
+  std::string terminator;
+  int bytesToCollect;
+
+protected:
   virtual void handleBufferRead (NetBuffer& buffer) ;
 
 public:
 
-  NetChat () : terminator (0) {}
+  NetChat () :
+    bytesToCollect(-1) 
+  {}
+
+  void setTerminator(const std::string& t);
+  const char* getTerminator() const;
 
-  void setTerminator (const char* t);
-  const char* getTerminator (void);
+  /**
+   * set byte count to collect - 'foundTerminator' will be called once
+   * this many bytes have been collected
+   */
+  void setByteCount(int bytes);
 
   bool push (const char* s);