You could write it out bytewise in the desired wire order:
// reverse wire order:
client.write(((const byte*) &value) + 3, 1);
client.write(((const byte*) &value) + 2, 1);
client.write(((const byte*) &value) + 1, 1);
client.write(((const byte*) &value), 1);