appid_app_descriptor.h (snort3-3.1.28.0) | : | appid_app_descriptor.h (snort3-3.1.29.0) | ||
---|---|---|---|---|
skipping to change at line 210 | skipping to change at line 210 | |||
void set_service_group(int16_t group) | void set_service_group(int16_t group) | |||
{ | { | |||
service_group = group; | service_group = group; | |||
} | } | |||
int16_t get_service_group() const | int16_t get_service_group() const | |||
{ | { | |||
return service_group; | return service_group; | |||
} | } | |||
void set_alpn_service_app_id(AppId id) | ||||
{ | ||||
alpn_service_app_id = id; | ||||
} | ||||
AppId get_alpn_service_app_id() const | ||||
{ | ||||
return alpn_service_app_id; | ||||
} | ||||
private: | private: | |||
AppId port_service_id = APP_ID_NONE; | AppId port_service_id = APP_ID_NONE; | |||
AppId alpn_service_app_id = APP_ID_NONE; | ||||
bool deferred = false; | bool deferred = false; | |||
using ApplicationDescriptor::set_id; | using ApplicationDescriptor::set_id; | |||
std::string my_vendor; | std::string my_vendor; | |||
AppIdServiceSubtype* subtype = nullptr; | AppIdServiceSubtype* subtype = nullptr; | |||
snort::SfIp service_ip; | snort::SfIp service_ip; | |||
uint16_t service_port = 0; | uint16_t service_port = 0; | |||
int16_t service_group = DAQ_PKTHDR_UNKNOWN; | int16_t service_group = DAQ_PKTHDR_UNKNOWN; | |||
}; | }; | |||
class ClientAppDescriptor : public ApplicationDescriptor | class ClientAppDescriptor : public ApplicationDescriptor | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 11 lines changed or added |