Added support for 2015 team number parsing and test.
Change-Id: I736eb02ee6225e791fdc90523855715928bf4511
diff --git a/aos/common/network/team_number.h b/aos/common/network/team_number.h
index 520b9ba..5a14872 100644
--- a/aos/common/network/team_number.h
+++ b/aos/common/network/team_number.h
@@ -3,6 +3,8 @@
#include <stdint.h>
+#include <string>
+
namespace aos {
namespace network {
@@ -18,6 +20,9 @@
// Guaranteed to be safe to call during static initialization time.
void OverrideTeamNumber(uint16_t team);
+namespace internal {
+int ParseTeamNumber(const std::string &hostname, uint16_t *teamnumber);
+} // namespace internal
} // namespace network
} // namespace aos