getSockOptSocketCustom handles GetSockOpt options not handled by getSockOptSocket. It returns a bool indicating whether the option was handled in addition to return values from getSockOptSocket.
(t *kernel.Task, s socket.Socket, ep commonEndpoint, name int, outLen int)
| 35 | // It returns a bool indicating whether the option was handled in addition to |
| 36 | // return values from getSockOptSocket. |
| 37 | func getSockOptSocketCustom(t *kernel.Task, s socket.Socket, ep commonEndpoint, name int, outLen int) (marshal.Marshallable, *syserr.Error, bool) { |
| 38 | return nil, nil, false |
| 39 | } |
| 40 | |
| 41 | func setSockOptIPCustom(t *kernel.Task, s socket.Socket, ep commonEndpoint, name int, optVal []byte) (*syserr.Error, bool) { |
| 42 | return nil, false |
no outgoing calls
no test coverage detected
searching dependent graphs…