Deleted Added
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_PORT_H_INCLUDED_
8#define _NXT_PORT_H_INCLUDED_

--- 113 unchanged lines hidden (view full) ---

122
123
124struct nxt_port_recv_msg_s {
125 nxt_fd_t fd;
126 nxt_buf_t *buf;
127 nxt_port_t *port;
128 nxt_port_msg_t port_msg;
129 size_t size;
130 union {
131 nxt_port_t *new_port;
132 nxt_pid_t removed_pid;
133 void *data;
134 } u;
135};
136
137typedef struct nxt_app_s nxt_app_t;
138
139struct nxt_port_s {
140 nxt_fd_event_t socket;
141
142 nxt_queue_link_t link; /* for nxt_process_t.ports */

--- 104 unchanged lines hidden ---