File: rpc_table.py

package info (click to toggle)
libsearpc 3.2.1-1%2Breally3.2%2Bgit20220902.15f6f0b-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 524 kB
  • sloc: ansic: 4,094; python: 863; makefile: 111; sh: 68
file content (9 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
"""
Define RPC functions needed to generate
"""

# [ <ret-type>, [<arg_types>] ]
func_table = [
    [ "int", ["string"] ],
    [ "objlist", ["int", "int", "string"] ]
]