blob: 00308f179259f8973cab2d95a57c55078e34f0f3 [file] [log] [blame]
#
# Copyright (c) 2021 Project CHIP Authors
#
# 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.
#
from ctypes import CFUNCTYPE, c_char_p, c_uint16, c_uint32, c_uint64
from chip.native import PyChipError
DiscoverSuccessCallback_t = CFUNCTYPE(
None, # void return
c_uint64, # fabric id
c_uint64, # node id
c_uint32, # interface id
c_char_p, # IP address
c_uint16 # port
)
DiscoverFailureCallback_t = CFUNCTYPE(
None, # void return
c_uint64, # fabric id
c_uint64, # node id
PyChipError, # CHIP_ERROR error code
)