Re: location of the function(recvfrom,socket...)

1999-08-20 Thread Ben Rosengart
On Thu, 19 Aug 1999, jin biao wrote: > Could you tell me where is the code of the functions(sendto, > recvfrom,socket,bind...) located at FreeBSD source tree. narcissus% pwd /sys narcissus% find . | xargs grep -a ^sendto ./kern/uipc_syscalls.c:sendto(p, uap) narcissus%

Re: location of the function(recvfrom,socket...)

1999-08-20 Thread Ben Rosengart
On Thu, 19 Aug 1999, jin biao wrote: > Could you tell me where is the code of the functions(sendto, > recvfrom,socket,bind...) located at FreeBSD source tree. narcissus% pwd /sys narcissus% find . | xargs grep -a ^sendto ./kern/uipc_syscalls.c:sendto(p, uap) narcissus%

Re: location of the function(recvfrom,socket...)

1999-08-19 Thread Wes Peters
jin biao wrote: > > Dear Sir, > > Could you tell me where is the code of the functions(sendto, > recvfrom,socket,bind...) located at FreeBSD source tree. /usr/src/sys/kern/uipc_syscalls.c. I found this with the command: find /usr/src/sys -name '*.c' | xargs grep recvfrom Now you can t

Re: location of the function(recvfrom,socket...)

1999-08-19 Thread Wes Peters
jin biao wrote: > > Dear Sir, > > Could you tell me where is the code of the functions(sendto, > recvfrom,socket,bind...) located at FreeBSD source tree. /usr/src/sys/kern/uipc_syscalls.c. I found this with the command: find /usr/src/sys -name '*.c' | xargs grep recvfrom Now you can