File tree Expand file tree Collapse file tree 1 file changed +24
-5
lines changed
pidl/lib/Parse/Pidl/Samba4 Expand file tree Collapse file tree 1 file changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -1597,11 +1597,30 @@ sub Interface($$$)
1597
1597
$self -> pidl(" " );
1598
1598
1599
1599
my $signature =
1600
- " \" $interface ->{NAME}(binding, lp_ctx=None, credentials=None) -> connection\\ n\"
1601
- \"\\ n\"
1602
- \" binding should be a DCE/RPC binding string (for example: ncacn_ip_tcp:127.0.0.1)\\ n\"
1603
- \" lp_ctx should be a path to a smb.conf file or a param.LoadParm object\\ n\"
1604
- \" credentials should be a credentials.Credentials object.\\ n\\ n\" " ;
1600
+ " \" $interface ->{NAME}(binding, lp_ctx=None, credentials=None, basis_connection=None) -> connection\\ n\"
1601
+ \"\\ n\\ n\"
1602
+ \" Parameters\\ n\"
1603
+ \" ----------\\ n\"
1604
+ \" binding : str\\ n\"
1605
+ \" A DCE/RPC binding string (for example: ncacn_ip_tcp:127.0.0.1)\\ n\"
1606
+ \" lp_ctx : param.LoadParm\\ n\"
1607
+ \" Should be a path to a smb.conf file or a param.LoadParm object\\ n\"
1608
+ \" credentials : credentials.Credentials, optional\\ n\"
1609
+ \" A credentials.Credentials object (default is None).\\ n\"
1610
+ \" basis_connection : samba.dcerpc.ClientConnection, optional\\ n\"
1611
+ \" A $interface ->{NAME} client connection object (default is None).\\ n\"
1612
+ \"\\ n\\ n\"
1613
+ \" Returns\\ n\"
1614
+ \" -------\\ n\"
1615
+ \" samba.dcerpc.ClientConnection\\ n\"
1616
+ \" A ClientConnection object\\ n\"
1617
+ \"\\ n\\ n\"
1618
+ \" Raises\\ n\"
1619
+ \" ------\\ n\"
1620
+ \" samba.NTSTATUSError\\ n\"
1621
+ \" An NTSTATUS error\\ n\"
1622
+ \"\\ n\" " ;
1623
+
1605
1624
1606
1625
my $docstring = $self -> DocString($interface , $interface -> {NAME });
1607
1626
You can’t perform that action at this time.
0 commit comments