diff options
| author | Russ White <russ@riw.us> | 2023-02-21 08:01:03 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-21 08:01:03 -0500 | 
| commit | ba755d35e508c2452e5459bdd7c0dd67a70a88a4 (patch) | |
| tree | adc08f46788b8012240faec23ae7e7271bb0d40d /bgpd/bgp_aspath.h | |
| parent | 39c664c4ea530a9460efa1a78fe669ae56c85f83 (diff) | |
| parent | 616e9f0d9f0458788adf4b30707016c8db383b02 (diff) | |
Merge pull request #12248 from pguibert6WIND/bgpasdot
lib, bgp: add initial support for asdot format
Diffstat (limited to 'bgpd/bgp_aspath.h')
| -rw-r--r-- | bgpd/bgp_aspath.h | 12 | 
1 files changed, 9 insertions, 3 deletions
diff --git a/bgpd/bgp_aspath.h b/bgpd/bgp_aspath.h index dd65b423a7..18af375c13 100644 --- a/bgpd/bgp_aspath.h +++ b/bgpd/bgp_aspath.h @@ -57,6 +57,9 @@ struct aspath {  	   and AS path regular expression match.  */  	char *str;  	unsigned short str_len; + +	/* AS notation used by string expression of AS path */ +	enum asnotation_mode asnotation;  };  #define ASPATH_STR_DEFAULT_LEN 32 @@ -65,7 +68,9 @@ struct aspath {  extern void aspath_init(void);  extern void aspath_finish(void);  extern struct aspath *aspath_parse(struct stream *s, size_t length, -				   int use32bit); +				   int use32bit, +				   enum asnotation_mode asnotation); +  extern struct aspath *aspath_dup(struct aspath *aspath);  extern struct aspath *aspath_aggregate(struct aspath *as1, struct aspath *as2);  extern struct aspath *aspath_prepend(struct aspath *as1, struct aspath *as2); @@ -81,9 +86,10 @@ extern bool aspath_cmp_left(const struct aspath *aspath1,  extern bool aspath_cmp_left_confed(const struct aspath *as1,  				   const struct aspath *as2);  extern struct aspath *aspath_delete_confed_seq(struct aspath *aspath); -extern struct aspath *aspath_empty(void); +extern struct aspath *aspath_empty(enum asnotation_mode asnotation);  extern struct aspath *aspath_empty_get(void); -extern struct aspath *aspath_str2aspath(const char *str); +extern struct aspath *aspath_str2aspath(const char *str, +					enum asnotation_mode asnotation);  extern void aspath_str_update(struct aspath *as, bool make_json);  extern void aspath_free(struct aspath *aspath);  extern struct aspath *aspath_intern(struct aspath *aspath);  | 
