bottin/goldap/struct_methods.go

8 lines
135 B
Go
Raw Permalink Normal View History

2021-09-16 11:41:01 +00:00
package message
func NewLDAPMessageWithProtocolOp(po ProtocolOp) *LDAPMessage {
m := NewLDAPMessage()
m.protocolOp = po
return m
}