! \brief Set suggested error reply */
| 62 | /*! \brief Set suggested error reply |
| 63 | */ |
| 64 | void set_err_reply(int rc, char *rr) |
| 65 | { |
| 66 | _oser_err_info.rcode = rc; |
| 67 | if(rr) |
| 68 | { |
| 69 | _oser_err_info.rreason.s = rr; |
| 70 | _oser_err_info.rreason.len = strlen(rr); |
| 71 | } |
| 72 | } |
| 73 |
no outgoing calls
no test coverage detected