summaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Expand)AuthorFilesLines
2016-06-17Updated Makefile so install-dep doesn't promptKeith Burns (alagalah)1-3/+4
2016-06-156rd: Move to pluginOle Troan1-3/+3
2016-06-14Cleanup /dev/shm before starting VPP from top-level MakefileDamjan Marion1-0/+2
2016-06-05VPP-94: Add build-data directory for plugins and Makefile targetPierre Pfister1-1/+7
2016-05-16VPP-65: Fix top-level "make install-dep" to work behind a firewall /Dave Wallace1-4/+4
2016-05-13VPP-57 Add doxygen build dependenciesChris Luke1-4/+9
2016-05-13VPP-57 Add Doxygen to VPPChris Luke1-0/+25
2016-05-07Switch to using -headless JDKEd Warnicke1-1/+6
2016-05-04Fix for unattended in MakefileEd Warnicke1-1/+1
2016-05-02Re-do java-8 handling, add unattended switch to toplevel MakefileDamjan Marion1-18/+21
2016-05-02VPP-33 Removing javah from Makefile. Merged as fix for Gerrit 884Keith Burns (alagalah)1-6/+0
2016-05-02HONEYCOMB-10: jVpp - the new java API. Java code generationMaros Marsalek1-0/+6
2016-04-28Fix for java8 releated breakage in make install-depEd Warnicke1-2/+2
2016-04-28VPP-8: Set java-8 for JNIMarek Gradzki1-1/+14
2016-04-28Update Makefile to add debuginfo RPMs for gdbThomas F Herbert1-1/+2
2016-04-26Make automake silent rules defaultDamjan Marion1-2/+1
2016-04-20ubuntu 16.04 build support. Supporting systemd with vpp.service files.Srivatsa Sangli1-1/+1
2016-04-20Python-API: Inital commit of Python bindings for the VPP API.Ole Troan1-1/+1
2016-04-17dpdk socket-mem handling optimizationsDamjan Marion1-1/+1
2016-04-14Fix dependency install on Ubuntu 16.04Damjan Marion1-1/+1
2016-03-29Add DPDK 16.04-rc2 supportDamjan Marion1-1/+2
2016-03-29Fix epl-release in make install-dep for rpmEd Warnicke1-1/+1
2016-03-25Add build-root/*.rpm to .gitignoreEd Warnicke1-1/+10
2016-03-18Add -y to apt-get install for install-dep targetEd Warnicke1-1/+1
2016-03-17Few additions to top-level MakefileDamjan Marion1-14/+34
2016-02-25add install-dep target to toplevel MakefileDamjan Marion1-0/+9
2016-02-23Few improvements in toplevel MakefileDamjan Marion1-4/+14
2016-02-10Add Top-Level Wrapper MakefileDamjan Marion1-0/+141
ass="nf">lldp_tlv_set_code (lldp_tlv_t * tlv, lldp_tlv_code_t code); u16 lldp_tlv_get_length (const lldp_tlv_t * tlv); void lldp_tlv_set_length (lldp_tlv_t * tlv, u16 length); #define foreach_chassis_id_subtype(F) \ F (0, reserved, "Reserved") \ F (1, chassis_comp, "Chassis component") \ F (2, intf_alias, "Interface alias") \ F (3, port_comp, "Port component") \ F (4, mac_addr, "MAC address") \ F (5, net_addr, "Network address") \ F (6, intf_name, "Interface name") \ F (7, local, "Locally assigned") #define LLDP_CHASS_ID_SUBTYPE_NAME(t) LLDP_CHASS_ID_SUBTYPE_##t #define LLDP_MIN_CHASS_ID_LEN (1) #define LLDP_MAX_CHASS_ID_LEN (255) typedef enum { #define F(n, t, s) LLDP_CHASS_ID_SUBTYPE_NAME (t) = n, foreach_chassis_id_subtype (F) #undef F } lldp_chassis_id_subtype_t; /* *INDENT-OFF* */ typedef CLIB_PACKED (struct { struct lldp_tlv_head head; u8 subtype; u8 id[0]; }) lldp_chassis_id_tlv_t; /* *INDENT-ON* */ #define foreach_port_id_subtype(F) \ F (0, reserved, "Reserved") \ F (1, intf_alias, "Interface alias") \ F (2, port_comp, "Port component") \ F (3, mac_addr, "MAC address") \ F (4, net_addr, "Network address") \ F (5, intf_name, "Interface name") \ F (6, agent_circuit_id, "Agent circuit ID") \ F (7, local, "Locally assigned") #define LLDP_PORT_ID_SUBTYPE_NAME(t) LLDP_PORT_ID_SUBTYPE_##t #define LLDP_MIN_PORT_ID_LEN (1) #define LLDP_MAX_PORT_ID_LEN (255) typedef enum { #define F(n, t, s) LLDP_PORT_ID_SUBTYPE_NAME (t) = n, foreach_port_id_subtype (F) #undef F } lldp_port_id_subtype_t; /* *INDENT-OFF* */ typedef CLIB_PACKED (struct { struct lldp_tlv_head head; u8 subtype; u8 id[0]; }) lldp_port_id_tlv_t; typedef CLIB_PACKED (struct { struct lldp_tlv_head head; u16 ttl; }) lldp_ttl_tlv_t; /* *INDENT-ON* */ #endif /* __included_lldp_protocol_h__ */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */