Carmelo Cascone
Committed by Carmelo Cascone

Removed files that were accidentally commited to BMv2 protocol

Change-Id: Id639d0f8d1b34bd7b82f30d5af2b79ee4630d354
namespace java org.p4.bmv2.thrift
namespace cpp cpservice
service ControlPlaneService {
bool ping(),
oneway void packetIn(1: i32 port, 2: i64 reason, 3: i32 tableId, 4: i32 contextId, 5: binary packet),
oneway void hello(1: i32 thriftServerPort, 2: i32 deviceId)
}
\ No newline at end of file
namespace java org.p4.bmv2.thrift
/* Copyright 2013-present Barefoot Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* 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.
*/
/*
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
namespace cpp bm_runtime.simple_pre
namespace py bm_runtime.simple_pre
typedef i32 BmMcMgrp
typedef i32 BmMcRid
typedef i32 BmMcMgrpHandle
typedef i32 BmMcL1Handle
typedef string BmMcPortMap // string of 0s and 1s
enum McOperationErrorCode {
TABLE_FULL = 1,
INVALID_HANDLE = 2,
INVALID_MGID = 3,
INVALID_L1_HANDLE = 4,
INVALID_L2_HANLDE = 5,
ERROR = 6
}
exception InvalidMcOperation {
1:McOperationErrorCode code
}
service SimplePre {
BmMcMgrpHandle bm_mc_mgrp_create(
1:i32 cxt_id,
2:BmMcMgrp mgrp
) throws (1:InvalidMcOperation ouch),
void bm_mc_mgrp_destroy(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle
) throws (1:InvalidMcOperation ouch),
BmMcL1Handle bm_mc_node_create(
1:i32 cxt_id,
2:BmMcRid rid
3:BmMcPortMap port_map
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_associate(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle,
3:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_dissociate(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle,
3:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_destroy(
1:i32 cxt_id,
2:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_update(
1:i32 cxt_id,
2:BmMcL1Handle l1_handle,
3:BmMcPortMap port_map
) throws (1:InvalidMcOperation ouch),
}
namespace java org.p4.bmv2.thrift
/* Copyright 2013-present Barefoot Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* 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.
*/
/*
* Srikrishna Gopu (krishna@barefootnetworks.com)
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
namespace cpp bm_runtime.simple_pre_lag
namespace py bm_runtime.simple_pre_lag
typedef i32 BmMcMgrp
typedef i32 BmMcRid
typedef i32 BmMcMgrpHandle
typedef i32 BmMcL1Handle
typedef i16 BmMcLagIndex
typedef string BmMcPortMap // string of 0s and 1s
typedef string BmMcLagMap // string of 0s and 1s
enum McOperationErrorCode {
TABLE_FULL = 1,
INVALID_HANDLE = 2,
INVALID_MGID = 3,
INVALID_L1_HANDLE = 4,
INVALID_L2_HANLDE = 5,
ERROR = 6
}
exception InvalidMcOperation {
1:McOperationErrorCode code
}
service SimplePreLAG {
BmMcMgrpHandle bm_mc_mgrp_create(
1:i32 cxt_id,
2:BmMcMgrp mgrp
) throws (1:InvalidMcOperation ouch),
void bm_mc_mgrp_destroy(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle
) throws (1:InvalidMcOperation ouch),
BmMcL1Handle bm_mc_node_create(
1:i32 cxt_id,
2:BmMcRid rid,
3:BmMcPortMap port_map,
4:BmMcLagMap lag_map
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_associate(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle,
3:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_dissociate(
1:i32 cxt_id,
2:BmMcMgrpHandle mgrp_handle,
3:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_destroy(
1:i32 cxt_id,
2:BmMcL1Handle l1_handle
) throws (1:InvalidMcOperation ouch),
void bm_mc_node_update(
1:i32 cxt_id,
2:BmMcL1Handle l1_handle,
3:BmMcPortMap port_map,
4:BmMcLagMap lag_map
) throws (1:InvalidMcOperation ouch),
void bm_mc_set_lag_membership(
1:i32 cxt_id,
2:BmMcLagIndex lag_index,
3:BmMcPortMap port_map
) throws (1:InvalidMcOperation ouch),
}
namespace java org.p4.bmv2.thrift
/* Copyright 2013-present Barefoot Networks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* 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.
*/
/*
* Antonin Bas (antonin@barefootnetworks.com)
*
*/
namespace cpp sswitch_runtime
namespace py sswitch_runtime
service SimpleSwitch {
i32 mirroring_mapping_add(1:i32 mirror_id, 2:i32 egress_port);
i32 mirroring_mapping_delete(1:i32 mirror_id);
i32 mirroring_mapping_get_egress_port(1:i32 mirror_id);
i32 set_egress_queue_depth(1:i32 depth_pkts);
i32 set_egress_queue_rate(1:i64 rate_pps);
oneway void push_packet(1:i32 port, 2:binary packet);
bool ping();
}
This diff is collapsed. Click to expand it.