librmnetctl: Add new error code for Netlink attributes

This code will be returned when the code encounters an error while
attempting to add an RTA to the netlink message sent to the kernel in
following patches.

Change-Id: I3254a3d9dee62094df3ddf3fa22357038bed3d5d
Signed-off-by: Sean Tranchetti <stranche@codeaurora.org>
diff --git a/rmnetctl/inc/librmnetctl.h b/rmnetctl/inc/librmnetctl.h
index 7ecbcb9..ef85c2b 100644
--- a/rmnetctl/inc/librmnetctl.h
+++ b/rmnetctl/inc/librmnetctl.h
@@ -2,7 +2,7 @@
 
 			  L I B R M N E T C T L . H
 
-Copyright (c) 2013-2015, 2017-2018 The Linux Foundation. All rights reserved.
+Copyright (c) 2013-2015, 2017-2019 The Linux Foundation. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
@@ -129,6 +129,10 @@
 	/* TC handle is full */
 	RMNETCTL_KERNEL_ERR_TC_HANDLE_FULL = 24,
 
+	RMNETCTL_API_THIRD_ERR = 25,
+	/* Failed to copy data into netlink message */
+	RMNETCTL_API_ERR_RTA_FAILURE = RMNETCTL_API_THIRD_ERR,
+
 	/* This should always be the last element */
 	RMNETCTL_API_ERR_ENUM_LENGTH
 };
@@ -165,7 +169,9 @@
 	"ERROR: Device doesn't exist\n",
 	"ERROR: One or more of the arguments is invalid\n",
 	"ERROR: Egress device is invalid\n",
-	"ERROR: TC handle is full\n"
+	"ERROR: TC handle is full\n",
+	/* New Rmnet Driver Errors */
+	"ERROR: Netlink message is too small to hold all data\n",
 };
 
 /*===========================================================================