sys_socket.c (fab4c373af4f465f03ae217f491d8cf3a3eeb26d) | sys_socket.c (ca04d21d5fdff6e58af745766024088091fe3d90) |
---|---|
1/*- 2 * Copyright (c) 1982, 1986, 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 52 unchanged lines hidden (view full) --- 61 .fo_truncate = soo_truncate, 62 .fo_ioctl = soo_ioctl, 63 .fo_poll = soo_poll, 64 .fo_kqfilter = soo_kqfilter, 65 .fo_stat = soo_stat, 66 .fo_close = soo_close, 67 .fo_chmod = invfo_chmod, 68 .fo_chown = invfo_chown, | 1/*- 2 * Copyright (c) 1982, 1986, 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 52 unchanged lines hidden (view full) --- 61 .fo_truncate = soo_truncate, 62 .fo_ioctl = soo_ioctl, 63 .fo_poll = soo_poll, 64 .fo_kqfilter = soo_kqfilter, 65 .fo_stat = soo_stat, 66 .fo_close = soo_close, 67 .fo_chmod = invfo_chmod, 68 .fo_chown = invfo_chown, |
69 .fo_sendfile = invfo_sendfile, |
|
69 .fo_flags = DFLAG_PASSABLE 70}; 71 72/* ARGSUSED */ 73int 74soo_read(struct file *fp, struct uio *uio, struct ucred *active_cred, 75 int flags, struct thread *td) 76{ --- 220 unchanged lines hidden --- | 70 .fo_flags = DFLAG_PASSABLE 71}; 72 73/* ARGSUSED */ 74int 75soo_read(struct file *fp, struct uio *uio, struct ucred *active_cred, 76 int flags, struct thread *td) 77{ --- 220 unchanged lines hidden --- |