Ethernet Switching (case)

  char c = client.read();

char myChar = 'A';
is the same as
char myChar = 65;

Would it help to change it to
int c = client.read();?