pwbrown / telos-client

An interactive TCP client abstraction for the Telos VX Prime phone server.
GNU General Public License v3.0
4 stars 0 forks source link

Parsing response #2

Open tomswinkels opened 5 years ago

tomswinkels commented 5 years ago

Really nice client!

I'am working on a PHP Client but how can i parse the response?

pwbrown commented 5 years ago

Thanks Tom,

I'm not too familiar with PHP unfortunately, but this client is really just a TCP wrapper for the actual client connection itself. The majority of the logic purely serves to read messages coming in and construct messages going out. The actual parsing of incoming LWCP messages is being handled by another library I wrote here. That parsing library is written using pure Javascript meaning it does not depend on any Node.js packages, so if you'd like to create a PHP port of the parsing logic, that would be the place to start.