Source key names (topic/queue/schedule identifier) */
| 707 | |
| 708 | /* Source key names (topic/queue/schedule identifier) */ |
| 709 | static int is_source_key(const char *key) { |
| 710 | return (strcmp(key, "topic") == 0 || strcmp(key, "queue") == 0 || |
| 711 | strcmp(key, "queue_name") == 0 || strcmp(key, "subscription") == 0 || |
| 712 | strcmp(key, "subject") == 0 || strcmp(key, "channel") == 0 || |
| 713 | strcmp(key, "stream") == 0); |
| 714 | } |
| 715 | |
| 716 | /* Target key names (endpoint URL) */ |
| 717 | static int is_target_key(const char *key) { |
no outgoing calls
no test coverage detected