julioterra / Arduino_Rest_Server

Simple rest-inspired server for Arduino that works with Serial or Ethernet connections.
31 stars 10 forks source link

Bitwise operation in void RestServer::process() !! #5

Closed kermitas closed 12 years ago

kermitas commented 12 years ago

Please improve void RestServer::process() to :

if ( (server_options & CALLBACK) == 0 || !service_active)

julioterra commented 12 years ago

Kermitas, thanks for identifying another bug in the code. I have made the fix and re-uploaded the code.

julioterra commented 12 years ago

Kermitas, thanks for all of your valuable feedback. I've updated the code per your suggestions.

All the best, Julio

On Tue, Apr 3, 2012 at 11:29 AM, kermitas < reply@reply.github.com

wrote:

Please improve void RestServer::process() to :

if ( (server_options & CALLBACK) == 0 || !service_active)


Reply to this email directly or view it on GitHub: https://github.com/julioterra/Arduino_Rest_Server/issues/5