]> git.proxmox.com Git - mirror_frr.git/blobdiff - qpb/qpb.h
bgpd: Allow 'no set community`
[mirror_frr.git] / qpb / qpb.h
index e22a7a384866c1f39387adcab1bf4fd8b1135f4b..9aeb7d01d4b8402c457df90921bb080605543ac9 100644 (file)
--- a/qpb/qpb.h
+++ b/qpb/qpb.h
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with Quagga; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /*
@@ -41,7 +40,7 @@
  */
 #define qpb_address_family_set qpb__address_family__set
 static inline int qpb__address_family__set(Qpb__AddressFamily *pb_family,
-                                          u_char family)
+                                          uint8_t family)
 {
        switch (family) {
        case AF_INET:
@@ -64,7 +63,7 @@ static inline int qpb__address_family__set(Qpb__AddressFamily *pb_family,
  */
 #define qpb_address_family_get qpb__address_family__get
 static inline int qpb__address_family__get(Qpb__AddressFamily pb_family,
-                                          u_char *family)
+                                          uint8_t *family)
 {
 
        switch (pb_family) {
@@ -116,7 +115,7 @@ static inline Qpb__L3Prefix *qpb__l3_prefix__create(qpb_allocator_t *allocator,
  */
 #define qpb_l3_prefix_get qpb__l3_prefix__get
 static inline int qpb__l3_prefix__get(const Qpb__L3Prefix *pb_prefix,
-                                     u_char family, struct prefix *prefix)
+                                     uint8_t family, struct prefix *prefix)
 {
 
        switch (family) {
@@ -263,7 +262,7 @@ static inline int qpb__ipv6_address__get(const Qpb__Ipv6Address *v6,
 #define qpb_l3_address_create qpb__l3_address__create
 static inline Qpb__L3Address *
 qpb__l3_address__create(qpb_allocator_t *allocator, union g_addr *addr,
-                       u_char family)
+                       uint8_t family)
 {
        Qpb__L3Address *l3_addr;
 
@@ -299,7 +298,7 @@ qpb__l3_address__create(qpb_allocator_t *allocator, union g_addr *addr,
  */
 #define qpb_l3_address_get qpb__l3_address__get
 static inline int qpb__l3_address__get(const Qpb__L3Address *l3_addr,
-                                      u_char *family, union g_addr *addr)
+                                      uint8_t *family, union g_addr *addr)
 {
        if (l3_addr->v4) {
                qpb__ipv4_address__get(l3_addr->v4, &addr->ipv4);