bssgp_bvc_fsm: Consistent naming

bssgp_bvc_get_features_* are fsm "methods" and the name should indicate
that just lika all other function names in bssgp_bvc_fsm.h

Change-Id: I30fbbe36cdabf9635eaf4dfb1e93c8ce0f667b39
This commit is contained in:
Daniel Willmann 2021-02-12 22:27:56 +01:00
parent fa632b8e80
commit 4e5cdad658
3 changed files with 9 additions and 9 deletions

View File

@ -61,9 +61,9 @@ bool bssgp_bvc_fsm_is_unblocked(struct osmo_fsm_inst *fi);
uint8_t bssgp_bvc_fsm_get_block_cause(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_get_features_advertised(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_get_features_received(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_get_features_negotiated(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_fsm_get_features_advertised(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_fsm_get_features_received(struct osmo_fsm_inst *fi);
uint32_t bssgp_bvc_fsm_get_features_negotiated(struct osmo_fsm_inst *fi);
void bssgp_bvc_fsm_set_max_pdu_len(struct osmo_fsm_inst *fi, uint16_t max_pdu_len);
uint16_t bssgp_bvc_fsm_get_max_pdu_len(const struct osmo_fsm_inst *fi);

View File

@ -794,7 +794,7 @@ uint8_t bssgp_bvc_fsm_get_block_cause(struct osmo_fsm_inst *fi)
}
/*! Return the advertised features / extended features. */
uint32_t bssgp_bvc_get_features_advertised(struct osmo_fsm_inst *fi)
uint32_t bssgp_bvc_fsm_get_features_advertised(struct osmo_fsm_inst *fi)
{
struct bvc_fsm_priv *bfp = fi->priv;
@ -803,7 +803,7 @@ uint32_t bssgp_bvc_get_features_advertised(struct osmo_fsm_inst *fi)
}
/*! Return the received features / extended features. */
uint32_t bssgp_bvc_get_features_received(struct osmo_fsm_inst *fi)
uint32_t bssgp_bvc_fsm_get_features_received(struct osmo_fsm_inst *fi)
{
struct bvc_fsm_priv *bfp = fi->priv;
@ -812,7 +812,7 @@ uint32_t bssgp_bvc_get_features_received(struct osmo_fsm_inst *fi)
}
/*! Return the negotiated features / extended features. */
uint32_t bssgp_bvc_get_features_negotiated(struct osmo_fsm_inst *fi)
uint32_t bssgp_bvc_fsm_get_features_negotiated(struct osmo_fsm_inst *fi)
{
struct bvc_fsm_priv *bfp = fi->priv;

View File

@ -93,9 +93,9 @@ bssgp_bvc_fsm_alloc_ptp_sgsn;
bssgp_bvc_fsm_set_ops;
bssgp_bvc_fsm_is_unblocked;
bssgp_bvc_fsm_get_block_cause;
bssgp_bvc_get_features_advertised;
bssgp_bvc_get_features_received;
bssgp_bvc_get_features_negotiated;
bssgp_bvc_fsm_get_features_advertised;
bssgp_bvc_fsm_get_features_received;
bssgp_bvc_fsm_get_features_negotiated;
bssgp_bvc_fsm_set_max_pdu_len;
bssgp_bvc_fsm_get_max_pdu_len;