summaryrefslogtreecommitdiffstats
path: root/src/plugins/acl/test
AgeCommit message (Expand)AuthorFilesLines
2021-02-08tests: allow for externally supplied VPP workers config for testsAndrew Yourtchenko1-0/+2
2020-12-04acl: fix acl-plugin testcases packet countingAndrew Yourtchenko1-2/+3
2020-03-27acl: API cleanupJakub Grajciar6-483/+847
2020-03-26acl: revert acl: api cleanupOle Trøan6-836/+469
2020-03-26acl: API cleanupJakub Grajciar6-469/+836
2019-12-17ip: Protocol Independent IP NeighborsNeale Ranns2-4/+3
2019-12-14tests: changes for scapy 2.4.3 migrationsnaramre1-1/+1
2019-12-03classify: API cleanupJakub Grajciar1-90/+8
2019-11-05misc: Fix python scripts shebang lineRenato Botelho do Couto5-5/+5
2019-10-21acl: l2 classify test support python3Ole Troan1-2/+2
2019-10-17tests: python3 changes for span and aclplugin testsnaramre2-7/+7
2019-10-03acl: fix intermittent test failureAndrew Yourtchenko1-9/+9
2019-08-22tests: move plugin tests to src/plugins/*/testDave Wallace5-0/+4785
2017-04-20Clean up old datapath code in ACL plugin.Andrew Yourtchenko3-172/+0
2017-01-01Move java,lua api and remaining plugins to src/Damjan Marion3-0/+172
"> * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef included_clib_error_h #define included_clib_error_h #include <vppinfra/types.h> typedef struct { /* Error message. */ u8 *what; /* Where error occurred (e.g. __FUNCTION__ __LINE__) */ const u8 *where; uword flags; /* Error code (e.g. errno for Unix errors). */ any code; } clib_error_t; #endif