pull-prototypes-to-head-20020821
[openafs.git] / src / rx / rx_user.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /* rx_user.c contains routines specific to the user space UNIX implementation of rx */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 RCSID("$Header$");
16
17 # include <sys/types.h>
18 # include <errno.h>
19 # include <signal.h>
20 #ifdef AFS_NT40_ENV
21 # include <WINNT/syscfg.h>
22 #else
23 # include <sys/socket.h>
24 # include <sys/file.h>
25 # include <netdb.h>
26 # include <sys/stat.h>
27 # include <netinet/in.h>
28 # include <sys/time.h>
29 # include <net/if.h>
30 # include <sys/ioctl.h>
31 #endif
32 # include <fcntl.h>
33 #if !defined(AFS_AIX_ENV) && !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
34 # include <sys/syscall.h>
35 #endif
36 #include <afs/afs_args.h>
37 #include <afs/afsutil.h>
38 #ifdef HAVE_STRING_H
39 #include <string.h>
40 #else
41 #ifdef HAVE_STRINGS_H
42 #include <strings.h>
43 #endif
44 #endif
45
46 #ifndef IPPORT_USERRESERVED
47 /* If in.h doesn't define this, define it anyway.  Unfortunately, defining
48    this doesn't put the code into the kernel to restrict kernel assigned
49    port numbers to numbers below IPPORT_USERRESERVED...  */
50 #define IPPORT_USERRESERVED 5000
51 # endif
52
53 #ifndef AFS_NT40_ENV
54 # include <sys/time.h>
55 #endif
56 # include "rx.h"
57 # include "rx_globals.h"
58
59 #ifdef AFS_PTHREAD_ENV
60 #include <assert.h>
61
62 /*
63  * The rx_if_init_mutex mutex protects the following global variables:
64  * Inited
65  */
66
67 pthread_mutex_t rx_if_init_mutex;
68 #define LOCK_IF_INIT assert(pthread_mutex_lock(&rx_if_init_mutex)==0);
69 #define UNLOCK_IF_INIT assert(pthread_mutex_unlock(&rx_if_init_mutex)==0);
70
71 /*
72  * The rx_if_mutex mutex protects the following global variables:
73  * myNetFlags
74  * myNetMTUs
75  * myNetMasks
76  */
77
78 pthread_mutex_t rx_if_mutex;
79 #define LOCK_IF assert(pthread_mutex_lock(&rx_if_mutex)==0);
80 #define UNLOCK_IF assert(pthread_mutex_unlock(&rx_if_mutex)==0);
81 #else
82 #define LOCK_IF_INIT
83 #define UNLOCK_IF_INIT
84 #define LOCK_IF
85 #define UNLOCK_IF
86 #endif /* AFS_PTHREAD_ENV */
87
88
89 /*
90  * Make a socket for receiving/sending IP packets.  Set it into non-blocking
91  * and large buffering modes.  If port isn't specified, the kernel will pick
92  * one.  Returns the socket (>= 0) on success.  Returns OSI_NULLSOCKET on
93  * failure. Port must be in network byte order. 
94  */
95 osi_socket rxi_GetUDPSocket(u_short port)
96 {
97     int binds, code=0;
98     osi_socket socketFd = OSI_NULLSOCKET;
99     struct sockaddr_in taddr;
100     char *name = "rxi_GetUDPSocket: ";
101     int greedy=0;
102
103 #if !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
104     if (ntohs(port) >= IPPORT_RESERVED && ntohs(port) < IPPORT_USERRESERVED) {
105 /*      (osi_Msg "%s*WARNING* port number %d is not a reserved port number.  Use port numbers above %d\n", name, port, IPPORT_USERRESERVED);
106 */ ;
107     }
108     if (ntohs(port) > 0 && ntohs(port) < IPPORT_RESERVED && geteuid() != 0) {
109         (osi_Msg "%sport number %d is a reserved port number which may only be used by root.  Use port numbers above %d\n", name, ntohs(port), IPPORT_USERRESERVED);
110         goto error;
111     }
112 #endif
113     socketFd = socket(AF_INET, SOCK_DGRAM, 0);
114
115     if (socketFd < 0) {
116         perror("socket");
117         goto error;
118     }
119
120     taddr.sin_addr.s_addr = 0;
121     taddr.sin_family = AF_INET;
122     taddr.sin_port = (u_short)port;
123 #ifdef STRUCT_SOCKADDR_HAS_SA_LEN
124     taddr.sin_len = sizeof(struct sockaddr_in);
125 #endif
126 #define MAX_RX_BINDS 10
127     for (binds=0; binds<MAX_RX_BINDS; binds++) {
128       if (binds) rxi_Delay (10);
129       code = bind(socketFd, (struct sockaddr *) &taddr, sizeof(taddr));
130       if (!code) break;
131     }
132     if (code) {
133       perror("bind");
134       (osi_Msg "%sbind failed\n", name);
135       goto error;
136     }
137
138 #if !defined(AFS_NT40_ENV) && !defined(AFS_DJGPP_ENV)
139     /*
140      * Set close-on-exec on rx socket 
141      */
142     fcntl(socketFd, F_SETFD, 1);
143 #endif
144
145     /* Use one of three different ways of getting a socket buffer expanded to
146      * a reasonable size.
147      */
148     {
149         int len1, len2;
150
151         len1 = 32766;
152         len2 = rx_UdpBufSize;
153 #ifndef AFS_DJGPP_ENV
154         greedy = 
155           (setsockopt(socketFd, SOL_SOCKET, SO_RCVBUF, (char *)&len2,
156                       sizeof(len2)) >= 0);
157         if (!greedy) {
158           len2=32766;  /* fall back to old size... uh-oh! */
159         }
160
161         greedy =
162           (setsockopt(socketFd, SOL_SOCKET, SO_SNDBUF, (char *)&len1,
163                       sizeof(len1)) >= 0) &&
164           (setsockopt(socketFd, SOL_SOCKET, SO_RCVBUF, (char *)&len2,
165                       sizeof(len2)) >= 0);
166 #endif /* AFS_DJGPP_ENV */
167     }
168
169 #ifndef AFS_DJGPP_ENV
170     if (!greedy)
171         (osi_Msg "%s*WARNING* Unable to increase buffering on socket\n", name);
172 #endif /* AFS_DJGPP_ENV */
173     if (rxi_Listen(socketFd) < 0) {
174         goto error;
175     }
176
177     return socketFd;
178
179 error:
180 #ifdef AFS_NT40_ENV
181     if (socketFd >= 0) closesocket(socketFd);
182 #else
183     if (socketFd >= 0) close(socketFd);
184 #endif
185
186     MUTEX_ENTER(&rx_stats_mutex);
187     rx_stats.socketGreedy = greedy;
188     MUTEX_EXIT(&rx_stats_mutex);
189     return OSI_NULLSOCKET;
190 }
191
192 void osi_Panic(char *msg, int a1, int a2, int a3)
193 {
194     (osi_Msg "Fatal Rx error: ");
195     (osi_Msg msg, a1, a2, a3);
196     fflush(stderr);
197     fflush(stdout);
198     afs_abort();
199 }
200
201 /*
202  * osi_AssertFailU() -- used by the osi_Assert() macro.
203  */
204
205 void osi_AssertFailU(const char *expr, const char *file, int line)
206 {
207     osi_Panic("assertion failed: %s, file: %s, line: %d\n", (int) expr, (int) file, line);
208 }
209
210 #ifdef  AFS_AIX32_ENV
211 #ifndef osi_Alloc
212 static const char memZero;
213 char *osi_Alloc(afs_int32 x)
214 {
215     /* 
216      * 0-length allocs may return NULL ptr from osi_kalloc, so we special-case
217      * things so that NULL returned iff an error occurred 
218      */
219     if (x == 0) return &memZero;
220     return ((char *) malloc(x));
221 }
222
223 void osi_Free(char *x, afs_int32 size)
224 {
225     if (x == &memZero) return;
226     free((char *)x);
227 }
228 #endif
229 #endif /* AFS_AIX32_ENV */
230
231 #define ADDRSPERSITE    16
232
233
234 afs_uint32 rxi_NetAddrs[ADDRSPERSITE]; /* host order */
235 static int myNetMTUs[ADDRSPERSITE];
236 static int myNetMasks[ADDRSPERSITE];
237 static int myNetFlags[ADDRSPERSITE];
238 u_int rxi_numNetAddrs;
239 static int Inited = 0;
240
241 #if defined(AFS_NT40_ENV) || defined(AFS_DJGPP_ENV)
242 int rxi_getaddr(void)
243 {
244     if (rxi_numNetAddrs > 0)
245         return htonl(rxi_NetAddrs[0]);
246     else
247         return 0;
248 }
249
250 /* 
251 ** return number of addresses 
252 ** and the addresses themselves in the buffer
253 ** maxSize - max number of interfaces to return.
254 */
255 int rx_getAllAddr (afs_int32 *buffer, int maxSize)
256 {
257     int count = 0;
258     for (count = 0; count < rxi_numNetAddrs && maxSize > 0; count++, maxSize--)
259         buffer[count] = htonl(rxi_NetAddrs[count]);
260
261     return count;
262 }
263
264 #endif
265
266 #ifdef AFS_NT40_ENV
267
268 void rx_GetIFInfo(void)
269 {
270     LOCK_IF_INIT
271     if (Inited) {
272         UNLOCK_IF_INIT
273         return;
274     }
275     else {
276         u_int maxsize;
277         u_int rxsize;
278         int npackets, ncbufs;
279         afs_uint32 i;
280
281         Inited = 1;
282         UNLOCK_IF_INIT
283         rxi_numNetAddrs = ADDRSPERSITE;
284
285         LOCK_IF
286         (void) syscfg_GetIFInfo(&rxi_numNetAddrs, rxi_NetAddrs,
287                                 myNetMasks, myNetMTUs, myNetFlags);
288
289         for (i=0; i<rxi_numNetAddrs; i++) {
290             rxsize = rxi_AdjustIfMTU(myNetMTUs[i] - RX_IPUDP_SIZE);
291             maxsize = rxi_nRecvFrags*rxsize + (rxi_nRecvFrags-1)*UDP_HDR_SIZE;
292             maxsize = rxi_AdjustMaxMTU(rxsize, maxsize);
293             if (rx_maxReceiveSize < maxsize)  {
294                 rx_maxReceiveSize = MIN( RX_MAX_PACKET_SIZE, maxsize);
295                 rx_maxReceiveSize = MIN( rx_maxReceiveSize,
296                                          rx_maxReceiveSizeUser);
297             }
298
299         }
300         UNLOCK_IF
301         ncbufs = (rx_maxJumboRecvSize - RX_FIRSTBUFFERSIZE);
302         if (ncbufs > 0) {
303             ncbufs = ncbufs / RX_CBUFFERSIZE;
304             npackets = rx_initSendWindow -1;
305             rxi_MorePackets(npackets*(ncbufs+1));
306         }
307     }
308 }
309     
310 #endif
311
312 static afs_uint32 fudge_netmask(afs_uint32 addr) 
313 {
314 afs_uint32 msk;
315
316     if (IN_CLASSA(addr)) msk = IN_CLASSA_NET;
317     else if (IN_CLASSB(addr)) msk = IN_CLASSB_NET;
318     else if (IN_CLASSC(addr)) msk = IN_CLASSC_NET;
319     else msk = 0;
320
321 return msk;
322 }
323
324
325
326 #if !defined(AFS_AIX_ENV) && !defined(AFS_NT40_ENV) && !defined(AFS_LINUX20_ENV) && !defined(AFS_DJGPP_ENV)
327 int rxi_syscall(a3, a4, a5)
328 afs_uint32 a3, a4;
329 void * a5;
330 {
331   afs_uint32 rcode;
332   void (*old)();
333         
334   old = (void (*)())signal(SIGSYS, SIG_IGN);    
335
336 #if defined(AFS_SGI_ENV)
337   rcode = afs_syscall(a3, a4, a5);
338 #else
339   rcode = syscall (AFS_SYSCALL, 28 /* AFSCALL_CALL */, a3, a4, a5);
340 #endif /* AFS_SGI_ENV */
341
342   signal(SIGSYS, old);  
343
344 return rcode;
345 }
346 #endif /* AFS_AIX_ENV */
347
348 #ifndef AFS_NT40_ENV
349 void rx_GetIFInfo(void)
350 {
351     int     s;
352     int     i, j, len, res;
353 #ifndef AFS_DJGPP_ENV
354     struct ifconf   ifc;
355     struct ifreq    ifs[ADDRSPERSITE];
356     struct ifreq *ifr;
357 #ifdef  AFS_AIX41_ENV
358     char buf[BUFSIZ], *cp, *cplim;
359 #endif
360     struct sockaddr_in *a;
361 #endif /* AFS_DJGPP_ENV */
362
363     LOCK_IF_INIT
364     if (Inited) {
365       UNLOCK_IF_INIT
366       return;
367     }
368     Inited = 1;
369     UNLOCK_IF_INIT
370
371     LOCK_IF
372     rxi_numNetAddrs = 0;
373     memset(rxi_NetAddrs, 0, sizeof(rxi_NetAddrs));
374     memset(myNetFlags, 0, sizeof(myNetFlags));
375     memset(myNetMTUs, 0, sizeof(myNetMTUs));
376     memset(myNetMasks, 0, sizeof(myNetMasks));
377     UNLOCK_IF
378
379     s = socket(AF_INET, SOCK_DGRAM, 0);
380     if (s < 0) return;
381
382 #ifndef AFS_DJGPP_ENV
383 #ifdef  AFS_AIX41_ENV
384     ifc.ifc_len = sizeof (buf);
385     ifc.ifc_buf = buf;
386     ifr = ifc.ifc_req;
387 #else
388     ifc.ifc_len = sizeof(ifs);
389     ifc.ifc_buf = (caddr_t) &ifs[0];
390     memset(&ifs[0], 0, sizeof(ifs));
391 #endif 
392     res = ioctl(s, SIOCGIFCONF, &ifc);
393     if (res < 0) {
394       /* fputs(stderr, "ioctl error IFCONF\n"); */
395       close(s);
396       return;
397     }
398
399     LOCK_IF
400
401 #ifdef  AFS_AIX41_ENV
402 #define size(p) MAX((p).sa_len, sizeof(p))
403     cplim = buf + ifc.ifc_len; /*skip over if's with big ifr_addr's */
404     for (cp = buf; cp < cplim ;
405          cp += sizeof(ifr->ifr_name) + MAX(a->sin_len, sizeof(*a))) {
406         if (rxi_numNetAddrs >= ADDRSPERSITE)
407             break;
408
409         ifr = (struct ifreq *)cp;
410 #else
411     len = ifc.ifc_len / sizeof(struct ifreq);
412     if (len > ADDRSPERSITE)
413       len = ADDRSPERSITE;
414
415     for (i = 0; i < len; ++i) {
416         ifr = &ifs[i];
417         res = ioctl(s, SIOCGIFADDR, ifr);
418 #endif
419         if (res < 0) {
420           /* fputs(stderr, "ioctl error IFADDR\n");
421             perror(ifr->ifr_name);   */
422           continue;
423         }
424         a = (struct sockaddr_in *) &ifr->ifr_addr;
425         if (a->sin_family != AF_INET) continue;
426         rxi_NetAddrs[rxi_numNetAddrs] = ntohl(a->sin_addr.s_addr);
427         if (rxi_NetAddrs[rxi_numNetAddrs] == 0x7f000001) {
428           /* we don't really care about "localhost" */
429           continue;
430         }
431         for (j=0; j < rxi_numNetAddrs; j++) {
432            if (rxi_NetAddrs[j] == rxi_NetAddrs[rxi_numNetAddrs])
433               break;
434         }
435         if (j < rxi_numNetAddrs) continue;
436
437         /* fprintf(stderr, "if %s addr=%x\n", ifr->ifr_name,
438                 rxi_NetAddrs[rxi_numNetAddrs]); */
439
440 #ifdef SIOCGIFFLAGS
441         res = ioctl(s, SIOCGIFFLAGS, ifr);
442         if (res == 0) {
443             myNetFlags[rxi_numNetAddrs] = ifr->ifr_flags;
444 #ifdef IFF_LOOPBACK
445             /* Handle aliased loopbacks as well. */
446             if (ifr->ifr_flags & IFF_LOOPBACK)
447                 continue;
448 #endif
449             /* fprintf(stderr, "if %s flags=%x\n", 
450                     ifr->ifr_name, ifr->ifr_flags); */
451         }
452         else { /*
453           fputs(stderr, "ioctl error IFFLAGS\n");
454           perror(ifr->ifr_name); */
455         }
456 #endif /* SIOCGIFFLAGS */
457
458 #if !defined(AFS_AIX_ENV)  && !defined(AFS_LINUX20_ENV)
459         /* this won't run on an AIX system w/o a cache manager */
460         rxi_syscallp = rxi_syscall;
461 #endif
462
463         /* If I refer to kernel extensions that aren't loaded on AIX, the 
464          * program refuses to load and run, so I simply can't include the 
465          * following code.  Fortunately, AIX is the one operating system in
466          * which the subsequent ioctl works reliably. */
467         if (rxi_syscallp) {
468           if ((*rxi_syscallp)( 20 /*AFSOP_GETMTU*/,  
469                               htonl(rxi_NetAddrs[rxi_numNetAddrs]),
470                               &(myNetMTUs[rxi_numNetAddrs]))) {
471             /* fputs(stderr, "syscall error GETMTU\n");
472                perror(ifr->ifr_name); */
473             myNetMTUs[rxi_numNetAddrs] = 0;
474           }
475           if ((*rxi_syscallp)(42 /*AFSOP_GETMASK*/,  
476                               htonl(rxi_NetAddrs[rxi_numNetAddrs]),
477                               &(myNetMasks[rxi_numNetAddrs]))) {
478             /* fputs(stderr, "syscall error GETMASK\n");
479                perror(ifr->ifr_name); */
480             myNetMasks[rxi_numNetAddrs] = 0;
481           }
482           else myNetMasks[rxi_numNetAddrs] = ntohl( myNetMasks[rxi_numNetAddrs]);
483            /* fprintf(stderr, "if %s mask=0x%x\n", 
484              ifr->ifr_name, myNetMasks[rxi_numNetAddrs]);*/
485         }
486
487         if (myNetMTUs[rxi_numNetAddrs] == 0) {
488           myNetMTUs[rxi_numNetAddrs] = OLD_MAX_PACKET_SIZE + RX_IPUDP_SIZE;
489 #ifdef SIOCGIFMTU
490           res = ioctl(s, SIOCGIFMTU, ifr);
491           if ((res == 0) && (ifr->ifr_metric > 128))  { /* sanity check */
492             myNetMTUs[rxi_numNetAddrs] = ifr->ifr_metric;
493             /* fprintf(stderr, "if %s mtu=%d\n", 
494                     ifr->ifr_name, ifr->ifr_metric); */
495           }
496           else {
497             /* fputs(stderr, "ioctl error IFMTU\n");
498                perror(ifr->ifr_name); */
499           }
500 #endif
501         }
502
503         if (myNetMasks[rxi_numNetAddrs] == 0) {
504           myNetMasks[rxi_numNetAddrs] = fudge_netmask(rxi_NetAddrs[rxi_numNetAddrs]);
505 #ifdef SIOCGIFNETMASK
506           res = ioctl(s, SIOCGIFNETMASK, ifr);
507           if ((res == 0)) {
508             a = (struct sockaddr_in *) &ifr->ifr_addr;
509             myNetMasks[rxi_numNetAddrs] = ntohl(a->sin_addr.s_addr);
510             /* fprintf(stderr, "if %s subnetmask=0x%x\n", 
511                     ifr->ifr_name, myNetMasks[rxi_numNetAddrs]); */
512           }
513           else {
514             /* fputs(stderr, "ioctl error IFMASK\n");
515                perror(ifr->ifr_name); */
516           }
517 #endif
518         }
519
520         if (rxi_NetAddrs[rxi_numNetAddrs] != 0x7f000001) { /* ignore lo0 */
521            int maxsize;
522            maxsize = rxi_nRecvFrags*(myNetMTUs[rxi_numNetAddrs] - RX_IP_SIZE);
523            maxsize -= UDP_HDR_SIZE; /* only the first frag has a UDP hdr */
524            if (rx_maxReceiveSize < maxsize) 
525                 rx_maxReceiveSize = MIN( RX_MAX_PACKET_SIZE, maxsize);
526            ++rxi_numNetAddrs;
527         }
528     }
529     UNLOCK_IF
530     close(s);
531
532     /* have to allocate at least enough to allow a single packet to reach its
533      * maximum size, so ReadPacket will work.  Allocate enough for a couple
534      * of packets to do so, for good measure */
535     {
536       int npackets, ncbufs;
537
538       rx_maxJumboRecvSize = RX_HEADER_SIZE
539                             + rxi_nDgramPackets * RX_JUMBOBUFFERSIZE
540                             + (rxi_nDgramPackets-1) * RX_JUMBOHEADERSIZE;
541       rx_maxJumboRecvSize = MAX(rx_maxJumboRecvSize, rx_maxReceiveSize);
542       ncbufs = (rx_maxJumboRecvSize - RX_FIRSTBUFFERSIZE);
543       if (ncbufs > 0) {
544         ncbufs = ncbufs / RX_CBUFFERSIZE;
545         npackets = rx_initSendWindow -1;
546         rxi_MorePackets(npackets*(ncbufs+1));
547       }
548     }
549 #else /* AFS_DJGPP_ENV */
550     close(s);
551     return;
552 #endif /* AFS_DJGPP_ENV */
553 }
554 #endif /* AFS_NT40_ENV */
555
556 /* Called from rxi_FindPeer, when initializing a clear rx_peer structure,
557  * to get interesting information.
558  * Curiously enough, the rx_peerHashTable_lock currently protects the
559  * Inited variable (and hence rx_GetIFInfo). When the fs suite uses
560  * pthreads, this issue will need to be revisited.
561  */
562
563 void rxi_InitPeerParams(struct rx_peer *pp)
564 {
565     afs_uint32 ppaddr;
566     u_short rxmtu;
567     int ix;
568
569
570
571     LOCK_IF_INIT
572     if (!Inited) {
573         UNLOCK_IF_INIT
574         /*
575          * there's a race here since more than one thread could call
576          * rx_GetIFInfo.  The race stops in rx_GetIFInfo.
577          */
578         rx_GetIFInfo();
579     } else {
580         UNLOCK_IF_INIT
581     }
582
583 #ifdef ADAPT_MTU
584     /* try to second-guess IP, and identify which link is most likely to
585      * be used for traffic to/from this host. */
586     ppaddr = ntohl(pp->host);
587
588     pp->ifMTU = 0;
589     pp->timeout.sec = 2;
590     pp->rateFlag = 2;   /* start timing after two full packets */
591     /* I don't initialize these, because I presume they are bzero'd... 
592      * pp->burstSize pp->burst pp->burstWait.sec pp->burstWait.usec
593      * pp->timeout.usec */
594   
595     LOCK_IF
596     for (ix = 0; ix < rxi_numNetAddrs; ++ix) {
597       if ((rxi_NetAddrs[ix] & myNetMasks[ix]) == (ppaddr & myNetMasks[ix])) {
598 #ifdef IFF_POINTOPOINT
599         if (myNetFlags[ix] & IFF_POINTOPOINT) 
600            pp->timeout.sec = 4;
601 #endif /* IFF_POINTOPOINT */
602         rxmtu = myNetMTUs[ix] - RX_IPUDP_SIZE;
603         if ( rxmtu < RX_MIN_PACKET_SIZE ) 
604           rxmtu = RX_MIN_PACKET_SIZE ;
605         if (pp->ifMTU < rxmtu) 
606           pp->ifMTU = MIN(rx_MyMaxSendSize, rxmtu);
607       }
608     }
609     UNLOCK_IF
610
611     if (!pp->ifMTU) { /* not local */
612         pp->timeout.sec = 3;
613         pp->ifMTU = RX_REMOTE_PACKET_SIZE;
614     }
615 #else /* ADAPT_MTU */
616     pp->rateFlag = 2;   /* start timing after two full packets */
617     pp->timeout.sec = 2;
618     pp->ifMTU = OLD_MAX_PACKET_SIZE;
619 #endif /* ADAPT_MTU */
620     pp->ifMTU = rxi_AdjustIfMTU(pp->ifMTU);
621     pp->maxMTU = OLD_MAX_PACKET_SIZE;  /* for compatibility with old guys */
622     pp->natMTU = MIN((int)pp->ifMTU, OLD_MAX_PACKET_SIZE); 
623     pp->maxDgramPackets = MIN(rxi_nDgramPackets,
624                               rxi_AdjustDgramPackets(RX_MAX_FRAGS, pp->ifMTU));
625     pp->ifDgramPackets = MIN(rxi_nDgramPackets,
626                              rxi_AdjustDgramPackets(RX_MAX_FRAGS, pp->ifMTU));
627     pp->maxDgramPackets = 1;
628     /* Initialize slow start parameters */
629     pp->MTU = MIN(pp->natMTU, pp->maxMTU);
630     pp->cwind = 1;
631     pp->nDgramPackets = 1;
632     pp->congestSeq = 0;
633 }
634
635 /* Don't expose jumobgram internals. */
636 void rx_SetNoJumbo(void)
637 {
638     rx_maxReceiveSize = OLD_MAX_PACKET_SIZE;
639     rxi_nSendFrags = rxi_nRecvFrags = 1;
640 }