hunk ./src/ssc_sip.c 703 - * @param cli context pointer + * @param ssc context pointer hunk ./src/ssc_sip.c 851 - * - get a an description of the network addresses + * - get a description of the network addresses hunk ./src/ssc_sip.c 1622 - printf("%s: REGISTER %s - updating existing registrationk\n", ssc->ssc_name, op->op_ident); + printf("%s: REGISTER %s - updating existing registration\n", ssc->ssc_name, op->op_ident); hunk ./src/sofsip_cli.c 304 - conf->ssc_certdir = getenv("SOFSIP_ADDRESS"); + conf->ssc_certdir = getenv("SOFSIP_CERTDIR"); hunk ./src/ssc_sip.c 1218 + else + printf("No operations to zap\n"); hunk ./src/ssc_sip.c 148 +void ssc_i_options(int status, char const *phrase, nua_t *nua, ssc_t *ssc, + nua_handle_t *nh, ssc_oper_t *op, sip_t const *sip, + tagi_t tags[]); hunk ./src/ssc_sip.c 472 + case nua_i_options: + ssc_i_options(status, phrase, nua, ssc, nh, op, sip, tags); + break; + hunk ./src/ssc_sip.c 1242 + +/** + * Callback to an incoming OPTIONS request. + */ +void ssc_i_options(int status, char const *phrase, + nua_t *nua, ssc_t *ssc, + nua_handle_t *nh, ssc_oper_t *op, sip_t const *sip, + tagi_t tags[]) +{ + printf("%s: OPTIONS received\n", ssc->ssc_name); +}