Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basics of TLS support #6

Merged
merged 15 commits into from
Dec 5, 2013
Prev Previous commit
Next Next commit
Actually assign the parameter to the array
  • Loading branch information
mgdm committed Dec 4, 2013
commit fbabab8c5491917cb753820a5d58cdec5d7dafb7
1 change: 1 addition & 0 deletions mosquitto.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,6 +886,7 @@ PHP_MOSQUITTO_API void php_mosquitto_disconnect_callback(struct mosquitto *mosq,

MAKE_STD_ZVAL(rc_zval);
ZVAL_LONG(rc_zval, rc);
params[0] = &rc_zval;

object->disconnect_callback.params = params;
object->disconnect_callback.param_count = 1;
Expand Down